This Report explores the possibility of using Python Programming as tools to automatically process data gathered from financial activities and extract relevant information to achieve the goals of the Marketing and Finance Team. The objective is to perform an automatic process of data using artificial intelligence techniques, in particular the application of machine learning algorithms. The final goal is to manage the extraction of quantitative data with relevant information to inform manager about the current competitiveness of our products and services.
This report is intended to inform managment on the performance of the Marketing managers on how their marketing strategies were able to reach both loyal and impulse customers and improved Sales Value. This finance report will communicates the Firm's crucial financial information and competitiveness and covers a specified period through daily, weekly, and monthly financial reports. This will be our tools that you can apply to increase internal business performance as compared to privious years. The data on the finance report is also an effective means of remaining updated with any significant progress and changes in the status of our finances and guid as to measure our financial results, cash flow, and financial position on Monetary terms.
-- To Understand our current customer base in all States
-- To understand our Financial Position on how much Sales was declared
-- To Understand Buying trends base on Location and Day of The Week
-- To understand with of the Month or Day of the Week is suitable for promotion
-- To understand how many items were sold through out various Days of the Week and Months.
-- To understand most items sold and how much sales was made from each item sold in the Fiscal year.
%%html
from IPython.core.display import display, HTML
from IPython.display import display
from IPython.display import IFrame
%%html
%%javascript
IPython.notebook.save_notebook()
import itertools
import seaborn as sns
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
from matplotlib.ticker import NullFormatter
import pandas as pd
import numpy as np
import matplotlib.ticker as ticker
from sklearn import preprocessing
%matplotlib inline
import plotly.graph_objects as go
from kaleido.scopes.plotly import PlotlyScope
import plotly.graph_objects as go
#import orca
from matplotlib.ticker import FuncFormatter
from scipy.stats import norm
import seaborn as sns
import plotly.express as px
from datetime import datetime, date
today_date = date.today()
import pandas as pd
import os
from plotly.offline import download_plotlyjs, init_notebook_mode, iplot
init_notebook_mode(connected=True)
### Now We read from Updated Data
stockData1 = pd.read_csv("stockclosedata2.csv", na_values = [" ?"])
stockData1.head()
| Order ID | Product | Quantity Ordered | Price Each | Order Date | Purchase Address | |
|---|---|---|---|---|---|---|
| 0 | 176558.0 | USB-C Charging Cable | 2.0 | 11.95 | 4/19/2019 8:46 | 917 1st St, Dallas, TX 75001 |
| 1 | NaN | NaN | NaN | NaN | NaN | NaN |
| 2 | 176559.0 | Bose SoundSport Headphones | 1.0 | 99.99 | 4/7/2019 22:30 | 682 Chestnut St, Boston, MA 02215 |
| 3 | 176560.0 | Google Phone | 1.0 | 600.00 | 4/12/2019 14:38 | 669 Spruce St, Los Angeles, CA 90001 |
| 4 | 176560.0 | Wired Headphones | 1.0 | 11.99 | 4/12/2019 14:38 | 669 Spruce St, Los Angeles, CA 90001 |
We call our Data Frame to print out our data in our Database or in our repositry and print the first five (5) rows of our Data frame.
stockData1.isnull()
| Order ID | Product | Quantity Ordered | Price Each | Order Date | Purchase Address | |
|---|---|---|---|---|---|---|
| 0 | False | False | False | False | False | False |
| 1 | True | True | True | True | True | True |
| 2 | False | False | False | False | False | False |
| 3 | False | False | False | False | False | False |
| 4 | False | False | False | False | False | False |
| ... | ... | ... | ... | ... | ... | ... |
| 186845 | False | False | False | False | False | False |
| 186846 | False | False | False | False | False | False |
| 186847 | False | False | False | False | False | False |
| 186848 | False | False | False | False | False | False |
| 186849 | False | False | False | False | False | False |
186850 rows × 6 columns
We check in our data set if there are unusual entries in the data set, if there are any, python will automatically compute all our unusual entries and tell us which of our columns and rows contains these errors or entries. Where in the table indicates True means an error entry and where False means vice versa.
(stockData1.info())
<class 'pandas.core.frame.DataFrame'> RangeIndex: 186850 entries, 0 to 186849 Data columns (total 6 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 Order ID 185950 non-null float64 1 Product 185950 non-null object 2 Quantity Ordered 185950 non-null float64 3 Price Each 185950 non-null float64 4 Order Date 185950 non-null object 5 Purchase Address 185950 non-null object dtypes: float64(3), object(3) memory usage: 8.6+ MB
We use Our Pandas Library to process the data to give us information on our data set of which belongs to which data type in our Data Frame. From the table we can see our columns corresponds to various Data types in a Data Frame.
df_colus = (['OrderID','Product','QuantityOrdered','PriceEach','OrderDate','PurchaseAddress'])
We call a new Variable and redefine Our Colums respectively
stockData1.columns
Index(['Order ID', 'Product', 'Quantity Ordered', 'Price Each', 'Order Date',
'Purchase Address'],
dtype='object')
stockData1.columns = df_colus
stockData1.head()
| OrderID | Product | QuantityOrdered | PriceEach | OrderDate | PurchaseAddress | |
|---|---|---|---|---|---|---|
| 0 | 176558.0 | USB-C Charging Cable | 2.0 | 11.95 | 4/19/2019 8:46 | 917 1st St, Dallas, TX 75001 |
| 1 | NaN | NaN | NaN | NaN | NaN | NaN |
| 2 | 176559.0 | Bose SoundSport Headphones | 1.0 | 99.99 | 4/7/2019 22:30 | 682 Chestnut St, Boston, MA 02215 |
| 3 | 176560.0 | Google Phone | 1.0 | 600.00 | 4/12/2019 14:38 | 669 Spruce St, Los Angeles, CA 90001 |
| 4 | 176560.0 | Wired Headphones | 1.0 | 11.99 | 4/12/2019 14:38 | 669 Spruce St, Los Angeles, CA 90001 |
We then Check our columns we priviously defined in our Data Columns to a structured column names and print out our first five row of our dataset.
stockData2 = stockData1.dropna(how = 'any')
stockData2.head()
| OrderID | Product | QuantityOrdered | PriceEach | OrderDate | PurchaseAddress | |
|---|---|---|---|---|---|---|
| 0 | 176558.0 | USB-C Charging Cable | 2.0 | 11.95 | 4/19/2019 8:46 | 917 1st St, Dallas, TX 75001 |
| 2 | 176559.0 | Bose SoundSport Headphones | 1.0 | 99.99 | 4/7/2019 22:30 | 682 Chestnut St, Boston, MA 02215 |
| 3 | 176560.0 | Google Phone | 1.0 | 600.00 | 4/12/2019 14:38 | 669 Spruce St, Los Angeles, CA 90001 |
| 4 | 176560.0 | Wired Headphones | 1.0 | 11.99 | 4/12/2019 14:38 | 669 Spruce St, Los Angeles, CA 90001 |
| 5 | 176561.0 | Wired Headphones | 1.0 | 11.99 | 4/30/2019 9:27 | 333 8th St, Los Angeles, CA 90001 |
After examine our data set and having a second look at the error entries, we then call our Python Pandas magic library to collate and remove all error entries in our dataset. From the table above We can see a sample of the Order ID, Product purchased, Quantity Ordered, Price of the product, the Order date of Purchase and Addresses of customer.
stockData2['OrderDate'].unique()
array(['4/19/2019 8:46', '4/7/2019 22:30', '4/12/2019 14:38', ...,
'9/23/2019 7:39', '9/19/2019 17:30', '9/30/2019 0:18'],
dtype=object)
Checking different time stamp entries in our Data
stockData2['Product'].value_counts()
USB-C Charging Cable 21903 Lightning Charging Cable 21658 AAA Batteries (4-pack) 20641 AA Batteries (4-pack) 20577 Wired Headphones 18882 Apple Airpods Headphones 15549 Bose SoundSport Headphones 13325 27in FHD Monitor 7507 iPhone 6842 27in 4K Gaming Monitor 6230 34in Ultrawide Monitor 6181 Google Phone 5525 Flatscreen TV 4800 Macbook Pro Laptop 4724 ThinkPad Laptop 4128 20in Monitor 4101 Vareebadd Phone 2065 LG Washing Machine 666 LG Dryer 646 Name: Product, dtype: int64
We then Count how many time a product was bought by different customers in different times. This is not the actual total sum of Order quantity purchased by our customers. The dataFrame above shows that USB-C Charging Cable was purchased 21903 different times, followed by Lightning Charging Cable 21658, AAA Batteries (4-pack) 20641, AA Batteries (4-pack) 20577, Wired Headphones 18882 and as follow in order on the DataFrame.
stockData2['QuantityOrdered'].value_counts()
1.0 168552 2.0 13324 3.0 2920 4.0 806 5.0 236 6.0 80 7.0 24 8.0 5 9.0 3 Name: QuantityOrdered, dtype: int64
The table above gives us a fair Idea of how many time or quantity of items bought. Number of quantity of items a customer, From our Data output we can see that 168552 customers bough 1 items at a time, 13324 customers bought 2 items at a time, 2920 customers bought 3 items at the same time of purchase. Again, 806 customers boughr 4 items at a time, 236 customers also bought 5 items at a single time of purchase, 80 customers bought 6 items bought at the same time.Lastly, 24, customer, 5 customer and 3 customers also bought 7, 8, and 9 Items in a single time of purchasing respectivey. Statistically, We have a fair idea that, Most of our customers are likely to buy 1 or 2 or 3 items at a time. This will give managers and decision makers to plan of packaging efficiency and optimize packaging cost.
stockData2['QuantityOrdered'] = stockData2.QuantityOrdered.astype(int)
C:\Users\JeroRich\anaconda3\envs\ox\lib\site-packages\pandas\core\frame.py:3607: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
stockData2['OrderDate'] = pd.to_datetime(stockData2['OrderDate'])
stockData2['PriceEach'] = stockData2.PriceEach.astype(float)
stockData2['OrderID'] = stockData2.OrderID.astype(str)
stockData2['Product'] = stockData2.Product.astype(str)
stockData2['PurchaseAddress'] = stockData2.PurchaseAddress.astype(str)
We are converting all our our columns such as QuantityOrdered, PriceEach, OrderID, Product, PurchaseAddress to their respective Data type in Pyhton for further Analytics to be carried out. Lastly we use the TimeDate Stamp to convert our dates into proper Python date type.
stockData2.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 185950 entries, 0 to 186849 Data columns (total 6 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 OrderID 185950 non-null object 1 Product 185950 non-null object 2 QuantityOrdered 185950 non-null int32 3 PriceEach 185950 non-null float64 4 OrderDate 185950 non-null datetime64[ns] 5 PurchaseAddress 185950 non-null object dtypes: datetime64[ns](1), float64(1), int32(1), object(3) memory usage: 9.2+ MB
stockData2.describe()
| QuantityOrdered | PriceEach | |
|---|---|---|
| count | 185950.000000 | 185950.000000 |
| mean | 1.124383 | 184.399735 |
| std | 0.442793 | 332.731330 |
| min | 1.000000 | 2.990000 |
| 25% | 1.000000 | 11.950000 |
| 50% | 1.000000 | 14.950000 |
| 75% | 1.000000 | 150.000000 |
| max | 9.000000 | 1700.000000 |
This our first descriptive Analysis in depth, In Data Analytics, one of the most important step is have astatistical idea of the numerical data types in Dataset. The Count of the summary of all data entries, Mean, that is the avarage score, Standard deviation, which is a deviation or how far apart a deviation in a dataset is from the total mean. The minimum value and the Maximum value in the dataset, the first quatile, the second quatile known as inter quatile and the thrid quatile. This is mostly visualized using the whisker box plot to check for skewness in our data set or for outliers. This is mostly and also important when drawing our normal distribution curve with the numerical values in a Data
## We Want to Know at What Mounth is Sales High In Our shop
## We Need to Add a Mounth Colum to our Original Coloumns
## And Now We Separate a new column for Month alone
stockData2["Month"] = stockData2['OrderDate'].dt.strftime('%m')
C:\Users\JeroRich\anaconda3\envs\ox\lib\site-packages\pandas\core\frame.py:3607: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
## We Want to Know at What Mounth is Sales High In Our shop
## We Need to Add a Mounth Colum to our Original Coloumns
## At This stage we are adding th sales Column to know which Mounth in our Data hasve hiher sales volume
stockData2["Sales"] = stockData2["QuantityOrdered"] * stockData2["PriceEach"]
stockData2.head()
| OrderID | Product | QuantityOrdered | PriceEach | OrderDate | PurchaseAddress | Month | Sales | |
|---|---|---|---|---|---|---|---|---|
| 0 | 176558.0 | USB-C Charging Cable | 2 | 11.95 | 2019-04-19 08:46:00 | 917 1st St, Dallas, TX 75001 | 04 | 23.90 |
| 2 | 176559.0 | Bose SoundSport Headphones | 1 | 99.99 | 2019-04-07 22:30:00 | 682 Chestnut St, Boston, MA 02215 | 04 | 99.99 |
| 3 | 176560.0 | Google Phone | 1 | 600.00 | 2019-04-12 14:38:00 | 669 Spruce St, Los Angeles, CA 90001 | 04 | 600.00 |
| 4 | 176560.0 | Wired Headphones | 1 | 11.99 | 2019-04-12 14:38:00 | 669 Spruce St, Los Angeles, CA 90001 | 04 | 11.99 |
| 5 | 176561.0 | Wired Headphones | 1 | 11.99 | 2019-04-30 09:27:00 | 333 8th St, Los Angeles, CA 90001 | 04 | 11.99 |
We call upon a Magic Pandas library in Python to extract the month from the actual Date and create a new column call "Month", Lastly, we again use similar process to extract our total sales per day from our dataset. This process is one of the most significant steps in this Analysis since the Data we extracted from the Database did not contain out total sales made in a day, but we are confident and with competency in Python that we can in any way computed our total sales and further create a corresponding column to hold our total sales column in our dataset.
stockData2['Month'].value_counts()
12 24984 10 20282 04 18279 11 17573 05 16566 03 15153 07 14293 06 13554 02 11975 08 11961 09 11621 01 9709 Name: Month, dtype: int64
We count the Number of Items sold in each month from Jenuary to December.
def get_city(address):
return address.split(",")[1]
def get_state(address):
return address.split(",")[2].split(" ")[1]
stockData2["City"] = stockData2["PurchaseAddress"].apply(lambda x: get_city(x) + '(' + get_state(x) + ')')
stockData2
C:\Users\JeroRich\anaconda3\envs\ox\lib\site-packages\pandas\core\frame.py:3607: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
| OrderID | Product | QuantityOrdered | PriceEach | OrderDate | PurchaseAddress | Month | Sales | City | |
|---|---|---|---|---|---|---|---|---|---|
| 0 | 176558.0 | USB-C Charging Cable | 2 | 11.95 | 2019-04-19 08:46:00 | 917 1st St, Dallas, TX 75001 | 04 | 23.90 | Dallas(TX) |
| 2 | 176559.0 | Bose SoundSport Headphones | 1 | 99.99 | 2019-04-07 22:30:00 | 682 Chestnut St, Boston, MA 02215 | 04 | 99.99 | Boston(MA) |
| 3 | 176560.0 | Google Phone | 1 | 600.00 | 2019-04-12 14:38:00 | 669 Spruce St, Los Angeles, CA 90001 | 04 | 600.00 | Los Angeles(CA) |
| 4 | 176560.0 | Wired Headphones | 1 | 11.99 | 2019-04-12 14:38:00 | 669 Spruce St, Los Angeles, CA 90001 | 04 | 11.99 | Los Angeles(CA) |
| 5 | 176561.0 | Wired Headphones | 1 | 11.99 | 2019-04-30 09:27:00 | 333 8th St, Los Angeles, CA 90001 | 04 | 11.99 | Los Angeles(CA) |
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 186845 | 259353.0 | AAA Batteries (4-pack) | 3 | 2.99 | 2019-09-17 20:56:00 | 840 Highland St, Los Angeles, CA 90001 | 09 | 8.97 | Los Angeles(CA) |
| 186846 | 259354.0 | iPhone | 1 | 700.00 | 2019-09-01 16:00:00 | 216 Dogwood St, San Francisco, CA 94016 | 09 | 700.00 | San Francisco(CA) |
| 186847 | 259355.0 | iPhone | 1 | 700.00 | 2019-09-23 07:39:00 | 220 12th St, San Francisco, CA 94016 | 09 | 700.00 | San Francisco(CA) |
| 186848 | 259356.0 | 34in Ultrawide Monitor | 1 | 379.99 | 2019-09-19 17:30:00 | 511 Forest St, San Francisco, CA 94016 | 09 | 379.99 | San Francisco(CA) |
| 186849 | 259357.0 | USB-C Charging Cable | 1 | 11.95 | 2019-09-30 00:18:00 | 250 Meadow St, San Francisco, CA 94016 | 09 | 11.95 | San Francisco(CA) |
185950 rows × 9 columns
We call upon a Magic Pandas library in Python to extract the Various Cities from the actual Purchasing Addresses and create a new column call "City", Lastly, we again use similar process is aslo another significant steps in this Analysis since the Data we extracted from the Database did not contain Cities but rather Addresses, but we are again confident and with competency in Python that we can extract our individual Cities Name and abbriviation from the Purchase Address to create a corresponding column to hold our individual Cities in our DataFrame.
stockData3 = pd.read_csv("stockAnalysis.csv", na_values = [" ?"])
stockData3.head()
| OrderID | Product | QuantityOrdered | PriceEach | OrderDate | PurchaseAddress | Month | Sales | City | |
|---|---|---|---|---|---|---|---|---|---|
| 0 | 176558.0 | USB-C Charging Cable | 2 | 11.95 | 2019-04-19 08:46:00 | 917 1st St, Dallas, TX 75001 | 4 | 23.90 | Dallas(TX) |
| 1 | 176559.0 | Bose SoundSport Headphones | 1 | 99.99 | 2019-04-07 22:30:00 | 682 Chestnut St, Boston, MA 02215 | 4 | 99.99 | Boston(MA) |
| 2 | 176560.0 | Google Phone | 1 | 600.00 | 2019-04-12 14:38:00 | 669 Spruce St, Los Angeles, CA 90001 | 4 | 600.00 | Los Angeles(CA) |
| 3 | 176560.0 | Wired Headphones | 1 | 11.99 | 2019-04-12 14:38:00 | 669 Spruce St, Los Angeles, CA 90001 | 4 | 11.99 | Los Angeles(CA) |
| 4 | 176561.0 | Wired Headphones | 1 | 11.99 | 2019-04-30 09:27:00 | 333 8th St, Los Angeles, CA 90001 | 4 | 11.99 | Los Angeles(CA) |
stockData3['OrderID'] = stockData3.OrderID.astype(str)
stockData3['Product'] = stockData3.Product.astype(str)
stockData3['QuantityOrdered'] = stockData3.QuantityOrdered.astype(int)
stockData3['PriceEach'] = stockData3.PriceEach.astype(float)
stockData3['OrderDate'] = pd.to_datetime(stockData3['OrderDate'])
stockData3['PurchaseAddress'] = stockData3.PurchaseAddress.astype(str)
stockData3['Month'] = stockData3.Month.astype(str)
stockData3['Sales'] = stockData3.Sales.astype(float)
stockData3['City'] = stockData3.City.astype(str)
From the above codes, since we have created a new Columns into our Dataset, We need to convert all columns in their respective data type.
## Extracting The Days Of the week from the Date
stockData3["Daysinweek"] = pd.Series(stockData3['OrderDate'].dt.day_name())
stockData3.head()
| OrderID | Product | QuantityOrdered | PriceEach | OrderDate | PurchaseAddress | Month | Sales | City | Daysinweek | |
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 176558.0 | USB-C Charging Cable | 2 | 11.95 | 2019-04-19 08:46:00 | 917 1st St, Dallas, TX 75001 | 4 | 23.90 | Dallas(TX) | Friday |
| 1 | 176559.0 | Bose SoundSport Headphones | 1 | 99.99 | 2019-04-07 22:30:00 | 682 Chestnut St, Boston, MA 02215 | 4 | 99.99 | Boston(MA) | Sunday |
| 2 | 176560.0 | Google Phone | 1 | 600.00 | 2019-04-12 14:38:00 | 669 Spruce St, Los Angeles, CA 90001 | 4 | 600.00 | Los Angeles(CA) | Friday |
| 3 | 176560.0 | Wired Headphones | 1 | 11.99 | 2019-04-12 14:38:00 | 669 Spruce St, Los Angeles, CA 90001 | 4 | 11.99 | Los Angeles(CA) | Friday |
| 4 | 176561.0 | Wired Headphones | 1 | 11.99 | 2019-04-30 09:27:00 | 333 8th St, Los Angeles, CA 90001 | 4 | 11.99 | Los Angeles(CA) | Tuesday |
We use our Magic Pandas library in Python to extract the Days of the Week from the Date stamp and create a new column call "Daysinweek" which is aslo another significant step in our Analysis since the Data we extracted from the Database did not contain the Days of the Week but rather Date of the day, with my competency in Python I will extract the Days of the Week from the Date stamp to create a corresponding column to hold our "Daysinweek" in our DataFrame.
stockData3.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 185950 entries, 0 to 185949 Data columns (total 10 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 OrderID 185950 non-null object 1 Product 185950 non-null object 2 QuantityOrdered 185950 non-null int32 3 PriceEach 185950 non-null float64 4 OrderDate 185950 non-null datetime64[ns] 5 PurchaseAddress 185950 non-null object 6 Month 185950 non-null object 7 Sales 185950 non-null float64 8 City 185950 non-null object 9 Daysinweek 185950 non-null object dtypes: datetime64[ns](1), float64(2), int32(1), object(6) memory usage: 13.5+ MB
This is the last step in Our Initail Data Preprocessing, I checked all coresponding Columns if they are attributed to their various respective Data type in other to be able to proceed to Indepth Analysis.
stockData3.describe()
| QuantityOrdered | PriceEach | Sales | |
|---|---|---|---|
| count | 185950.000000 | 185950.000000 | 185950.000000 |
| mean | 1.124383 | 184.399735 | 185.490917 |
| std | 0.442793 | 332.731330 | 332.919771 |
| min | 1.000000 | 2.990000 | 2.990000 |
| 25% | 1.000000 | 11.950000 | 11.950000 |
| 50% | 1.000000 | 14.950000 | 14.950000 |
| 75% | 1.000000 | 150.000000 | 150.000000 |
| max | 9.000000 | 1700.000000 | 3400.000000 |
A descriptive summury of numerical values in our Dataset.
## Total Sum of all Sales in all Months(12 Months)
stockData3['Sales'].sum()
34492035.97
The total Sum of Sales VodaFone made in 2019. From the above computation, VodaFone made a sum of sales $ 34492035.97 in mobile accessaries and electronics.
stockData3['QuantityOrdered'].sum()
209079
The total sales of item quantity sold was 209079 items in 2019. This gives us an Idea of how many Items were sold in 2019 so as to be able to compare with subsequent and previous years to be able to determine our competitiveness in the current market.
## Creating a Data Frame for Highest sales and order by City
stockData3BestCity = pd.DataFrame(stockData3.groupby(["City"], as_index = False).sum())
stockData3BestCity
| City | QuantityOrdered | PriceEach | Sales | |
|---|---|---|---|---|
| 0 | Atlanta(GA) | 16602 | 2779908.20 | 2795498.58 |
| 1 | Austin(TX) | 11153 | 1809873.61 | 1819581.75 |
| 2 | Boston(MA) | 22528 | 3637409.77 | 3661642.01 |
| 3 | Dallas(TX) | 16730 | 2752627.82 | 2767975.40 |
| 4 | Los Angeles(CA) | 33289 | 5421435.23 | 5452570.80 |
| 5 | New York City(NY) | 27932 | 4635370.83 | 4664317.43 |
| 6 | Portland(ME) | 2750 | 447189.25 | 449758.27 |
| 7 | Portland(OR) | 11303 | 1860558.22 | 1870732.34 |
| 8 | San Francisco(CA) | 50239 | 8211461.74 | 8262203.91 |
| 9 | Seattle(WA) | 16553 | 2733296.01 | 2747755.48 |
Sum of total in quantity order of Items purchased in each City and the total Sum of sales by Various Cities.
## City with the Highest Qauntity Order and Total Sum of sales
stockData3BestCity2 = stockData3BestCity.sort_values(["QuantityOrdered", "Sales", "PriceEach"], ascending = False)
stockData3BestCity2.head(10)
| City | QuantityOrdered | PriceEach | Sales | |
|---|---|---|---|---|
| 8 | San Francisco(CA) | 50239 | 8211461.74 | 8262203.91 |
| 4 | Los Angeles(CA) | 33289 | 5421435.23 | 5452570.80 |
| 5 | New York City(NY) | 27932 | 4635370.83 | 4664317.43 |
| 2 | Boston(MA) | 22528 | 3637409.77 | 3661642.01 |
| 3 | Dallas(TX) | 16730 | 2752627.82 | 2767975.40 |
| 0 | Atlanta(GA) | 16602 | 2779908.20 | 2795498.58 |
| 9 | Seattle(WA) | 16553 | 2733296.01 | 2747755.48 |
| 7 | Portland(OR) | 11303 | 1860558.22 | 1870732.34 |
| 1 | Austin(TX) | 11153 | 1809873.61 | 1819581.75 |
| 6 | Portland(ME) | 2750 | 447189.25 | 449758.27 |
In reference to our computation, San Francisco(CA) made to top Quantity order of items of 50239 Items and total sum of sales of $ 8.262204e+06, followed by Los Angeles(CA) with a Quantity order of items of 33289 items and a total sum of sales of $ 5.452571e+06. New York City(NY) also made a Quantity order of items of 27932 Items and a total sum of sales of $ 4.664317e+06. Boston(MA) made a total sale of Item Quantity of 22528 and a total sum of Sales of $ 3.661642e+06. Dallas(TX) also contributed 16730 of count of quantity order and a total sum of Sales of $ 2.767975e+06. Again, Atlanta(GA) made a total sum of order quantity of 16602 Items and a sum of Sales of $ 2.795499e+06, Seattle(WA) with a count on purchase of quantity order of 16553 and a total sum of Sales of $ 2.747755e+06 and Portland(OR) with a quantity order of 11303 items and a Sum of sales of $ 1.870732e+06. Austin(TX) and Portland(ME) also contributed 11153 and 2750 order of quantity and $ 1.819582e+06 and $ 4.497583e+05 sum of Sales in our Market share respectively. This Analysis tells us more about which city made the most purchase and give managers and idea of planning on segmentation, pricing, discounting and promotion in order to build upon our market share and compete well in the competitive market.
## City with the Highest Quantity Order
stockData3BestCity = stockData3BestCity.sort_values(["QuantityOrdered"], ascending = False)
stockData3BestCity.head(20)
| City | QuantityOrdered | PriceEach | Sales | |
|---|---|---|---|---|
| 8 | San Francisco(CA) | 50239 | 8211461.74 | 8262203.91 |
| 4 | Los Angeles(CA) | 33289 | 5421435.23 | 5452570.80 |
| 5 | New York City(NY) | 27932 | 4635370.83 | 4664317.43 |
| 2 | Boston(MA) | 22528 | 3637409.77 | 3661642.01 |
| 3 | Dallas(TX) | 16730 | 2752627.82 | 2767975.40 |
| 0 | Atlanta(GA) | 16602 | 2779908.20 | 2795498.58 |
| 9 | Seattle(WA) | 16553 | 2733296.01 | 2747755.48 |
| 7 | Portland(OR) | 11303 | 1860558.22 | 1870732.34 |
| 1 | Austin(TX) | 11153 | 1809873.61 | 1819581.75 |
| 6 | Portland(ME) | 2750 | 447189.25 | 449758.27 |
In reference to quantity order of Items, San Francisco(CA) made to top Quantity order of items of 50239 Items followed by followed by Los Angeles(CA) with a Quantity order of items of 33289 items, New York City(NY) also made a Quantity order of items of 27932 Items and Boston(MA) made a total sale of Item Quantity of 22528 Items. Dallas(TX) also contributed 16730 of count of quantity order whilst Atlanta(GA) also followed with a total sum of order quantity of 16602 Items. Again, Seattle(WA) with a count on purchase of quantity order of 16553 Items and Portland(OR) with a quantity order of 11303 items. Last, Austin(TX) and Portland(ME) also contributed 11153 and 2750 order of quantity in our Market share respectively. In reference to this Analysis, we have an idea which part of these cities is our strong segment to be able to make more effort in order to sustain or improve upon our competitiveness. Servearl steps could be taken to be able to make sure we do not loss our market value but rather define a Decision Surport Systems (DSS) based on Research and Analysis at why each Cities with our Segment contrinuted to their corresponding item order in able.
## Line Plot Of Highest Sum of Sales and Highest Quantity Order By City
fig = px.line(stockData3BestCity, x="City", y="Sales", title='Total Sales In 2019 By Cities', width=1000, height=600,
hover_data=['QuantityOrdered', 'PriceEach'])
fig.update_traces(texttemplate='%{text:.2s}')
##fig.update_layout(uniformtext_minsize=8, uniformtext_mode='hide')
fig.show()
##with open("figure1.pdf", "wb") as f:
## f.write(scope.transform(fig, format="pdf"))
##fig.write_html("file1.html")
Plotly, a Powerful Python Library usedd to plot intereactive plots of 2 anad 3 Dimentions in Data Science. A Line Plotly plot to show a Visual of Total Sales by Cities in 2019. Line Plot with go.Scatter If Plotly Express does not provide a good starting point, it is possible to use the more generic go. Scatter class from plotly graph objects. Whereas plotly.express has two functions scatter and line, go. Scatter can be used both for plotting points (makers) or lines, depending on the value of mode.
##
fig = px.bar(stockData3BestCity, y='QuantityOrdered', x='City', text='QuantityOrdered',
title='Bar Plot of QuantityOrdered In 2019 By State', hover_data=['QuantityOrdered', 'PriceEach'], color='Sales',
width=1000, height=600)
fig.update_traces(texttemplate='%{text:.2s}', textposition='outside')
##fig.update_layout(uniformtext_minsize=8, uniformtext_mode='hide')
fig.show()
#with open("figure2.pdf", "wb") as f:
# f.write(scope.transform(fig, format="pdf"))
#fig.write_html("file2.html")
Plotly, a Powerful Python Library usedd to plot intereactive plots of 3,4, 5 Dimentions in Data Science. A Bar plot to show a Visual of Total Quantity order by Cities in 2019.
fig = px.line_3d(stockData3BestCity, x="City", y="Sales", z="QuantityOrdered", title='Total Sales & Quantity Order By States',
width=800, height=600)
fig.show()
#with open("figure3.pdf", "wb") as f:
# f.write(scope.transform(fig, format="pdf"))
#fig.write_html("file13.html")
Plotly, a popular Python Library used for building intereactive plots of 2 and 3 Dimentional Visualization in Data Science. A 3 Dimensional Line Plotly plot to show a Visual of Total Sales by Cities in 2019. Plotly Express is an easy to use, high level interface for Plotly library, which operates on a variety of type of Data and produces easy to style figure with px.line. Each data point is represented as a vertex which location is given by the x and y column of a polyline mark in 2D space.
import plotly.express as px
import plotly.graph_objects as go
df = px.data.tips()
fig = go.Figure(data =[go.Scatter3d(x = stockData3BestCity['City'], y = stockData3BestCity['QuantityOrdered'],
z = stockData3BestCity['Sales'], mode ='markers')])
fig.show()
#with open("figure4.pdf", "wb") as f:
# f.write(scope.transform(fig, format="pdf"))
#fig.write_html("file4.html")
names = stockData3BestCity['City']
values = stockData3BestCity['Sales']
plt.style.use('classic')
plt.figure(figsize=(70, 10))
plt.subplot(131)
##plt.bar(names, values, color='b')
##plt.subplot(132)
plt.title('City Vrs Total Sum of Sales', fontsize=20)
plt.scatter(names, values, color='r')
##plt.subplot(133)
plt.plot(names, values)
plt.show()
MatplotLib and SK Learn, another popular and most widely used Python Visualization and Modeling Machien Learning in Data Science. The Plot above shows the distribution of Total Sum of Sales in each Segment or City.
## Total Sum of sales in Quantity and sales by States in each Month from Jan to Dec.
pd.set_option("display.max_rows", None, "display.max_columns", None)
stockData3BestMonth = pd.DataFrame(stockData3.groupby(["City", "Month"], as_index = False).sum())
stockData3BestMonth.head()
| City | Month | QuantityOrdered | PriceEach | Sales | |
|---|---|---|---|---|---|
| 0 | Atlanta(GA) | 1 | 876 | 148523.69 | 149159.54 |
| 1 | Atlanta(GA) | 10 | 1793 | 304508.46 | 306293.01 |
| 2 | Atlanta(GA) | 11 | 1568 | 273143.85 | 275338.70 |
| 3 | Atlanta(GA) | 12 | 2225 | 359097.06 | 360899.26 |
| 4 | Atlanta(GA) | 2 | 1042 | 175851.81 | 176470.30 |
pd.set_option("display.max_rows", None, "display.max_columns", None)
stockData3BestMonth = stockData3BestMonth.sort_values(["Sales","QuantityOrdered"], ascending = False)
stockData3BestMonth.head()
| City | Month | QuantityOrdered | PriceEach | Sales | |
|---|---|---|---|---|---|
| 99 | San Francisco(CA) | 12 | 6787 | 1100501.11 | 1106601.27 |
| 97 | San Francisco(CA) | 10 | 5310 | 861937.47 | 866700.98 |
| 102 | San Francisco(CA) | 4 | 4975 | 805693.57 | 812426.19 |
| 103 | San Francisco(CA) | 5 | 4443 | 772384.31 | 776679.49 |
| 98 | San Francisco(CA) | 11 | 4840 | 760902.41 | 764979.29 |
pd.set_option("display.max_rows", None, "display.max_columns", None)
stockData3BestMonth111 = stockData3BestMonth.sort_values(["Month", "Sales"], ascending = False)
stockData3BestMonth111
| City | Month | QuantityOrdered | PriceEach | Sales | |
|---|---|---|---|---|---|
| 107 | San Francisco(CA) | 9 | 3083 | 460938.06 | 463595.72 |
| 59 | Los Angeles(CA) | 9 | 2123 | 352525.82 | 354075.69 |
| 71 | New York City(NY) | 9 | 1708 | 298981.09 | 300563.83 |
| 35 | Boston(MA) | 9 | 1456 | 246591.73 | 248408.73 |
| 11 | Atlanta(GA) | 9 | 1035 | 169923.85 | 171278.89 |
| 47 | Dallas(TX) | 9 | 1053 | 163076.03 | 164212.86 |
| 119 | Seattle(WA) | 9 | 1059 | 155312.63 | 156369.27 |
| 23 | Austin(TX) | 9 | 763 | 105825.92 | 106483.70 |
| 95 | Portland(OR) | 9 | 668 | 103159.92 | 103811.88 |
| 83 | Portland(ME) | 9 | 161 | 28657.04 | 28759.56 |
| 106 | San Francisco(CA) | 8 | 3191 | 535065.50 | 538778.10 |
| 58 | Los Angeles(CA) | 8 | 2076 | 344302.64 | 345893.50 |
| 70 | New York City(NY) | 8 | 1809 | 301152.88 | 303183.46 |
| 34 | Boston(MA) | 8 | 1408 | 236932.64 | 239275.26 |
| 118 | Seattle(WA) | 8 | 1147 | 188466.05 | 189715.09 |
| 46 | Dallas(TX) | 8 | 1102 | 178958.29 | 179763.46 |
| 10 | Atlanta(GA) | 8 | 1053 | 168443.29 | 169267.66 |
| 22 | Austin(TX) | 8 | 735 | 125146.00 | 125713.61 |
| 94 | Portland(OR) | 8 | 745 | 116123.80 | 116881.14 |
| 82 | Portland(ME) | 8 | 182 | 35754.33 | 35996.60 |
| 105 | San Francisco(CA) | 7 | 3994 | 638095.00 | 642881.76 |
| 57 | Los Angeles(CA) | 7 | 2501 | 392183.65 | 394334.64 |
| 69 | New York City(NY) | 7 | 2168 | 353338.28 | 355716.10 |
| 33 | Boston(MA) | 7 | 1772 | 290151.72 | 291497.14 |
| 117 | Seattle(WA) | 7 | 1265 | 211415.90 | 212513.92 |
| 45 | Dallas(TX) | 7 | 1236 | 211201.99 | 212325.17 |
| 9 | Atlanta(GA) | 7 | 1259 | 210979.19 | 211766.47 |
| 21 | Austin(TX) | 7 | 850 | 149775.88 | 150324.93 |
| 93 | Portland(OR) | 7 | 809 | 143376.72 | 143994.49 |
| 81 | Portland(ME) | 7 | 218 | 32021.23 | 32421.14 |
| 104 | San Francisco(CA) | 6 | 3687 | 607694.75 | 613173.48 |
| 56 | Los Angeles(CA) | 6 | 2452 | 449351.78 | 451531.93 |
| 68 | New York City(NY) | 6 | 1999 | 322462.56 | 324148.58 |
| 32 | Boston(MA) | 6 | 1614 | 252741.72 | 254747.89 |
| 8 | Atlanta(GA) | 6 | 1231 | 218858.60 | 219816.47 |
| 116 | Seattle(WA) | 6 | 1198 | 213024.34 | 213853.52 |
| 44 | Dallas(TX) | 6 | 1188 | 185841.21 | 186885.75 |
| 20 | Austin(TX) | 6 | 803 | 143193.06 | 144057.29 |
| 92 | Portland(OR) | 6 | 850 | 139007.00 | 139562.02 |
| 80 | Portland(ME) | 6 | 231 | 29850.59 | 30025.33 |
| 103 | San Francisco(CA) | 5 | 4443 | 772384.31 | 776679.49 |
| 55 | Los Angeles(CA) | 5 | 2885 | 497151.19 | 499689.21 |
| 67 | New York City(NY) | 5 | 2555 | 433439.97 | 436126.40 |
| 31 | Boston(MA) | 5 | 1991 | 325999.80 | 328803.65 |
| 43 | Dallas(TX) | 5 | 1616 | 267131.07 | 268456.49 |
| 7 | Atlanta(GA) | 5 | 1502 | 237572.66 | 238853.99 |
| 115 | Seattle(WA) | 5 | 1405 | 210721.44 | 211654.29 |
| 91 | Portland(OR) | 5 | 1068 | 173054.03 | 173729.25 |
| 19 | Austin(TX) | 5 | 961 | 159802.17 | 160635.22 |
| 79 | Portland(ME) | 5 | 241 | 57868.49 | 57978.76 |
| 102 | San Francisco(CA) | 4 | 4975 | 805693.57 | 812426.19 |
| 54 | Los Angeles(CA) | 4 | 3398 | 546855.97 | 550264.02 |
| 66 | New York City(NY) | 4 | 2746 | 445252.65 | 449447.75 |
| 30 | Boston(MA) | 4 | 2189 | 351669.70 | 353807.11 |
| 6 | Atlanta(GA) | 4 | 1634 | 282870.88 | 284448.91 |
| 114 | Seattle(WA) | 4 | 1609 | 274688.62 | 276254.07 |
| 42 | Dallas(TX) | 4 | 1518 | 250209.05 | 251360.48 |
| 90 | Portland(OR) | 4 | 1132 | 196572.64 | 197441.63 |
| 18 | Austin(TX) | 4 | 1092 | 171487.65 | 172683.59 |
| 78 | Portland(ME) | 4 | 265 | 42370.29 | 42536.49 |
| 101 | San Francisco(CA) | 3 | 4025 | 690363.85 | 693726.96 |
| 53 | Los Angeles(CA) | 3 | 2755 | 427827.95 | 429929.37 |
| 65 | New York City(NY) | 3 | 2211 | 365148.88 | 367262.20 |
| 29 | Boston(MA) | 3 | 1881 | 298970.37 | 301023.81 |
| 5 | Atlanta(GA) | 3 | 1384 | 230134.86 | 231905.38 |
| 41 | Dallas(TX) | 3 | 1349 | 221205.40 | 222376.68 |
| 113 | Seattle(WA) | 3 | 1331 | 218234.74 | 219118.70 |
| 89 | Portland(OR) | 3 | 903 | 155384.87 | 156691.72 |
| 17 | Austin(TX) | 3 | 952 | 153671.83 | 154549.27 |
| 77 | Portland(ME) | 3 | 214 | 30265.08 | 30516.29 |
| 100 | San Francisco(CA) | 2 | 3243 | 544218.19 | 547072.34 |
| 52 | Los Angeles(CA) | 2 | 2160 | 339637.47 | 342061.66 |
| 64 | New York City(NY) | 2 | 1805 | 303046.15 | 305372.26 |
| 28 | Boston(MA) | 2 | 1400 | 213629.24 | 214808.36 |
| 40 | Dallas(TX) | 2 | 1112 | 185438.29 | 186667.99 |
| 4 | Atlanta(GA) | 2 | 1042 | 175851.81 | 176470.30 |
| 112 | Seattle(WA) | 2 | 1066 | 170166.84 | 171330.25 |
| 88 | Portland(OR) | 2 | 728 | 118870.48 | 119606.37 |
| 16 | Austin(TX) | 2 | 685 | 108325.58 | 108787.40 |
| 76 | Portland(ME) | 2 | 208 | 29700.67 | 29845.49 |
| 99 | San Francisco(CA) | 12 | 6787 | 1100501.11 | 1106601.27 |
| 51 | Los Angeles(CA) | 12 | 4378 | 679241.56 | 684044.84 |
| 63 | New York City(NY) | 12 | 3816 | 643612.89 | 646770.83 |
| 27 | Boston(MA) | 12 | 3026 | 506594.65 | 509599.16 |
| 111 | Seattle(WA) | 12 | 2203 | 386152.70 | 387317.93 |
| 39 | Dallas(TX) | 12 | 2303 | 378212.33 | 380718.85 |
| 3 | Atlanta(GA) | 12 | 2225 | 359097.06 | 360899.26 |
| 87 | Portland(OR) | 12 | 1506 | 250793.77 | 251748.04 |
| 15 | Austin(TX) | 12 | 1518 | 232440.12 | 233777.09 |
| 75 | Portland(ME) | 12 | 352 | 51769.22 | 51966.07 |
| 98 | San Francisco(CA) | 11 | 4840 | 760902.41 | 764979.29 |
| 50 | Los Angeles(CA) | 11 | 3120 | 496374.57 | 499690.79 |
| 62 | New York City(NY) | 11 | 2651 | 425707.06 | 428180.32 |
| 26 | Boston(MA) | 11 | 2173 | 349623.53 | 351546.02 |
| 2 | Atlanta(GA) | 11 | 1568 | 273143.85 | 275338.70 |
| 110 | Seattle(WA) | 11 | 1583 | 250620.69 | 252080.13 |
| 38 | Dallas(TX) | 11 | 1562 | 247127.45 | 248609.56 |
| 86 | Portland(OR) | 11 | 1065 | 172157.03 | 173210.70 |
| 14 | Austin(TX) | 11 | 977 | 170441.96 | 171286.47 |
| 74 | Portland(ME) | 11 | 259 | 34502.13 | 34681.22 |
| 97 | San Francisco(CA) | 10 | 5310 | 861937.47 | 866700.98 |
| 49 | Los Angeles(CA) | 10 | 3725 | 609228.15 | 612453.25 |
| 61 | New York City(NY) | 10 | 2951 | 485336.03 | 486954.41 |
| 25 | Boston(MA) | 10 | 2444 | 364265.09 | 367036.39 |
| 37 | Dallas(TX) | 10 | 1813 | 321353.23 | 323135.60 |
| 109 | Seattle(WA) | 10 | 1877 | 314801.51 | 316856.26 |
| 1 | Atlanta(GA) | 10 | 1793 | 304508.46 | 306293.01 |
| 13 | Austin(TX) | 10 | 1235 | 202100.25 | 203196.12 |
| 85 | Portland(OR) | 10 | 1274 | 200223.39 | 201778.34 |
| 73 | Portland(ME) | 10 | 281 | 51801.25 | 52322.52 |
| 96 | San Francisco(CA) | 1 | 2661 | 433667.52 | 435588.33 |
| 48 | Los Angeles(CA) | 1 | 1716 | 286754.48 | 288601.90 |
| 60 | New York City(NY) | 1 | 1513 | 257892.39 | 260591.29 |
| 24 | Boston(MA) | 1 | 1174 | 200239.58 | 201088.49 |
| 0 | Atlanta(GA) | 1 | 876 | 148523.69 | 149159.54 |
| 36 | Dallas(TX) | 1 | 878 | 142873.48 | 143462.51 |
| 108 | Seattle(WA) | 1 | 810 | 139690.55 | 140692.05 |
| 84 | Portland(OR) | 1 | 555 | 91834.57 | 92276.76 |
| 12 | Austin(TX) | 1 | 582 | 87663.19 | 88087.06 |
| 72 | Portland(ME) | 1 | 138 | 22628.93 | 22708.80 |
Sales made by each City is vital in this Analysis, It gave us full adea of how much each City contributed to total sales per Month. The summury is very usefull in identifying how much revenue was returned from all monthly purchasese. The Analysis also creat a window for Maximization and planning both short and long term Forcasting. In the Management of finance on Budgeting which is a keey financial plan of business attempting to forcast a number of months ahead, it is very important to know how much in each month, each City responded to our products and the revenue we made in each month by each City or Market segment. From our Analysis, in the month of January, customers at San Francisco(CA) made the highest purchase of 2661 and a total sum amount of $ 435588.33, followed by Los Angeles (CA) with a purchases of 1716 Items and a total sum amount of $ 288601.90. Boston(MA) also contributed 1174 of tottal items sold and a total sum amount of $ 201088.49 and Atlanta(GA), 876 Items and a total sum amount $ 149159.54. Again, Seattle(WA) also purchased 810 Items and contributed to $ 140692.05 of total sales made in January 2019, the City of Portland(OR) purchased 555 Items anda total sum amount $ 92276.76. Austin(TX) and Portland(ME) with 582 and 138 Items contributiing to 88087.06 and 22708.80 respectively.
In the Month of February San Francisco(CA) with the highest purchases of 3243 Items contributing sum amount of $ 547072.34, Los Angeles(CA) being the second higest of 2160 Items and sum amount of $ 342061.66, followed by New York City(NY) with 1805 Items and sum amount of $ 305372.26, Boston(MA) third of competotive order of 1400 Items and also contributing $ 214808.36 and Dallas(TX) with 1112 Item and a total sum of sales $ 186667.99. Again, Atlanta(GA) petronised most of our products with an order of 1042 items and contributed to $ 176470.30 of our Total sum of sales whilst Seattle(WA) was next on competitive order of 1066 Items and sum of sales of $ 171330.25. Portland(OR) also compete with 728 Items and sum of sales of $ 119606.37. Last, Austin(TX) and Portland(ME) with quatity order of Items of 685 and 208, sum of sales of $ 108787.40 and $ 29845.49 respectively.
In the Month of March, 2019, San Francisco(CA) still toped in ranking order of purchases of 4025 Items and sum of sales of $ 693726.96, Los Angeles(CA) with 2755 order of purchases and sum of sales of $ 429929.37, followed by New York City(NY) with 2211 Items of order and sum of Sales of $ 367262.20, Boston(MA) also was on the log with 1881 order of Items and sum of sales of $ 301023.81. Atlanta(GA) with 1384 Items anad sales of $ 231905.38 whilst Dallas(TX) made a total purcgase of 1349 items and Sales returns of $ 222376.68. Seattle(WA) with 1331 Items of order and sum of $ 219118.70. Portland(OR), with 903 Items and contributed 156691.72 of our total sales in march. Last, Austin(TX) with 952 order of items and sales returns of $ 154549.27 and Portland(ME) 214 Items and sales of $ 30516.29.
In April, 2019, San Francisco(CA) again leading of order of Items of 4975 and $ 812426.19 of sales, Los Angeles(CA) with 3398 Items and $ 550264.02 of Sales, New York City(NY) also with 2746 items and Sales of $ 449447.75. Boston(MA) 2189 Items and sum of Sales of $ 353807.11, Atlanta(GA) also made a total order of 1634 Items contributing to $ 284448.91 of our total sales in April. Customers in Seattle(WA) with 1609 items and $ 276254.07, Dallas(TX) also on the order with 1518 Items and $ 251360.48 of sales. Portland(OR) with 1132 Items and $ 197441.63 of sales returns whilst Austin(TX) was next of the log with 1092 Items and $ 172683.59 of sum of sales and Portland(ME) with the least orders of 265 Items and $ 42536.49 of total sales.
In May, San Francisco(CA) obviously lead the log again with the highest purchase of 443 Items and sum of sales sales $ 776679.49, Los Angeles(CA) second highest with 2885 items and $ 499689.21 of sales, New York City(NY) with 2555 Items and $ 436126.40 of sales, Boston(MA) with 1991 Items and sum of sales of $ 328803.65 and Dallas(TX), 1616 Items on order and sum od sales of $268456.49. Followed by Atlanta(GA) with 1502 Items and cntributing to $ 238853.99 of sales returns, Seattle(WA) with a purchase order of 1405 Items and $ 211654.29 of sales of order. Portland(OR) with 1068 items and $ 173729.25 as sales by total order. Last, Austin(TX) with 961 items and $ 160635.22 of sales and Portland(ME), 241 items and $ 57978.76 of sales returns on order of purchase in the month of May, 2019.
In June 2019, San Francisco(CA) contributed the highst order 3687 Items and $613173.48, Los Angeles(CA) was the second highest with an order of 2452 Items and $ 451531.93 or sum of sales of order, New York City(NY) with 1999 Items and sum of sales of $ 324148.58, Boston(MA) next with 1614 items quantity order and $ 254747.89 of sum of sales. Atlanta(GA) also contributed heavily on quatity border of purchases of 1231 Items summing up to $ 219816.47 of Sales, Seattle(WA) with 1198 Items of quantity order and a sum of sales of $ 213853.52, whilst Dallas(TX) also made a total purchase of 1188 Items and $ 186885.75 of sum of Sales. Moreover, Austin(TX) with 803 items and $ 144057.29 of sales, Portland(OR) with quatity order of 850 items and $ 139562.02 of Sales and Portland(ME) last on the log order with 231 Items and $ 30025.33 of sum of sales in June only.
Our Analysis shows that in July, 2019, San Francisco(CA) with a quantity order of 3994 Items and $ 642881.76 of sales, Los Angeles(CA) again as second highest with 2501 quatity order and $ 394334.64 of sales, New York City(NY) with 2168 Items on order summing up to $ 355716.10 of sales, Boston(MA) follows with 1772 items on order and $ 291497.14 on sales. Seattle(WA) with 1265 on orders and $ 212513.92 on sales, Dallas(TX) also with 1236 on quatity order and $ 212325.17 on sum of Sales, Atlanta(GA) with 1259 Items on purchase and $ 211766.47 on sum of sales, Austin(TX) making a total order of 850 Items and $ 150324.93 as sum of sales on quatity order. Last, Portland(OR) with 809 items on order and $ 143994.49 as sum of sales and Portland(ME) with 218 items and $ 32421.14 as sum of sales on July only.
In the Month of August, San Francisco(CA) still leading in total purchase with 3191 of quatity order and $ 538778.10 of sum of sales, Los Angeles(CA) stiil second highset in oreder quatity of 2076 items and $ 345893.50 of sales, New York City(NY) with 1809 quatity order and $ 303183.46 of sales, Boston(MA) also with 1408 items on order and $ 239275.26 as sum of sales. Seattle(WA) made a total order 1147 items and $ 189715.09 as sum of sales, Dallas(TX) with 1102 Items and sum of sales of $ 179763.46, Atlanta(GA) with 1053 Items and $ 169267.66 of sales, Austin(TX) with 735 Items and $ 125713.61 of total sales. Portland(OR) with 745 qauntity of order and $ 116881.14 of sum of sales and last, Portland(ME) with 182 of quantity order of items and a sum of sales of $ 35996.60 for ther month of August only.
The distrubition table again shows that in the month of September 2019, San Francisco(CA) as usual leading on quatity of order with 3083 Items and $ 463595.72 as sum of sales, followed by Los Angeles(CA) with 2123 items of order and $ 354075.69 as sales returns on order, New York City(NY) also with quantity order of 1708 Items and $ 300563.83 as sum of sales of order. Boston(MA) made a total quantity order of 1456 items and $ 248408.73 as sales, Atlanta(GA) with 1035 Itmes and a sum of sales of $ 171278.89, Dallas(TX) as one of our competitive market segments also with 1053 of total orders and a sum of sales on order of $ 164212.86. Again, Seattle(WA) also with 1059 iteme on order and $ 156369.27 of sum of sales and Austin(TX) with 763 items and a sales of $ 106483.70. Last, Portland(OR) and Portland(ME) with order quntity of 668 and 161, sum of sales of $ 103811.88 and $ 28759.56 respectively for the monthe of September only.
In October, San Francisco(CA) lead the table with 5310 items on order and summing up to $ 66700.98, Los Angeles(CA) second highest with 3725 on order of quntity and $ 612453.25 of total sum of sales, New York City(NY) with 2951 of item order and sum of sales of $ 486954.41, Boston(MA) also contributed 2444 items on total purchase and $ 367036.39 of sum of sales. Dallas(TX) with 1813 items and sum of sales of $ 323135.60, Seattle(WA) with 1877 items and $ 316856.26 as sales return, Atlanta(GA) also with order total of 1793 items and $ 306293.01 as sales rreturn on purchases, Austin(TX) with 1235 items and $ 203196.12 of sales. Last, Portland(OR) madea total quatity of purchase of 1274 items and and $ 201,778.34 sales on order and Portland(ME) with 281 items of order and sum of sales of $ 52,322.52 for the Monthe oc October only.
In November, San Francisco(CA) with the highest purchases of 4840 Items contributing sum amount of $ 764979.29, Los Angeles(CA) being the second higest of 3120 Items and sum amount of $ 499690.79, followed by New York City(NY) with 2651 Items and sum amount of $ 428180.32, Boston(MA) third of competotive order of 2173 Items and also contributing $ 351546.02 and Atlanta(GA) with 1568 Item and a total sum of sales $ 275338.70. Again, Seattle(WA) petronised most of our products with an order of 1583 items and contributed to $ 252080.13 of our Total sum of sales whilst Dallas(TX) was next on competitive order of 1562 Items and sum of sales of $ 248609.56. Portland(OR) also compete with 1065 Items and sum of sales of $ 173,210.70. Last, Austin(TX) and Portland(ME) with quatity order of Items of 977 and 259, sum of sales of $ 1712,86.47 and $ 34,681.22 respectively.
In December, this is the moth that shows our booming market share more than other moth in the year of 2019 comparing all quantity of order and sum of sales by each City. The distrubition table again shows that in the month of December 2019, San Francisco(CA) as usual leading on quatity of order with 6787 Items and $ 1,106,601.27 as sum of sales, followed by Los Angeles(CA) with 4378 items of order and $ 684,044.84 as sales returns on order, New York City(NY) also with quantity order of 3816 Items and $ 646,770.83 as sum of sales of order. Boston(MA) made a total quantity order of 3026 items and $ 509,599.16 as sales, Seattle(WA) with 2203 Itmes and a sum of sales of $ 387,317.93, Dallas(TX) as one of our competitive market segments also with 2303 of total orders and a sum of sales on order of $ 380,718.85. Again, Atlanta(GA) also with 2225 iteme on order and $ 360,899.26 of sum of sales and Portland(OR) with 1506 items and a sales of $ 251,748.04. Last, Austin(TX) and Portland(ME) with order quntity of 1518 and 352, sum of sales of $ 233,777.09 and $ 51,966.07 respectively for the monthe of December only.
stockData3BestMonth111.shape
(120, 5)
fig = px.bar(stockData3BestMonth, x="City", y="Sales", title='Total Sales In Each Months By State', color="Month", width=1000, height=700,
hover_data=['QuantityOrdered', 'PriceEach'])
#fig.update_traces(texttemplate='%{text:.2s}')
##fig.update_layout(uniformtext_minsize=8, uniformtext_mode='hide')
fig.show()
#with open("figure6.pdf", "wb") as f:
# f.write(scope.transform(fig, format="pdf"))
#fig.write_html("file6.html")
A "Stacked Bar plot" with an interactive Plotly Library in Python to Visualized our distribution of total Sales anad quantity order by each City and each month. From a statistics point of view and a mere observation December was our booming market and sales retunrs and this could be a factor of Christmas which likely, every producer is likely to earn more income. Top manager can use this period a source of comperitive advantage so as to target customers of specific months and its effects on our products ad service so as to creat, gain and maintain competitive advantage by creating a unique and a core resiources and compitencies in the form of promotions and advertisments.
## Scatter Plot Of Sum of Sales in every month by every City, This plot show all sum of order and Each price of a sale and Sum of sales in all 12 month
fig = px.scatter(stockData3BestMonth, x="City", y="Sales", size = "Sales", color="Month", title='Total Sales In Each Months By State',
hover_data=['QuantityOrdered', 'PriceEach'], size_max=40, )
fig.update_traces(texttemplate='%{text:.2s}')
##fig.update_layout(uniformtext_minsize=8, uniformtext_mode='hide')
fig.show()
#with open("figure5.pdf", "wb") as f:
# f.write(scope.transform(fig, format="pdf"))
fig.write_html("file5.png")
A bubble plot with an interactive Plotly Library in Python to Visualized our distribution of total Sales anad quantity order by each City and each month. From a statistics point of view and a mere observation December was our booming market and sales retunrs and this could be a factor of Christmas which likely, every producer is likely to earn more income. Top manager can use this period a source of comperitive advantage so as to target customers of specific months and its effects on our products ad service so as to creat, gain and maintain competitive advantage by creating a unique and a core resiources and compitencies in the form of promotions and advertisments.
x = stockData3BestMonth['Month']
y = stockData3BestMonth['Sales']
z = np.random.rand(40)
colors = np.random.rand(40)
data = ('stockData3BestMonth')
group_data = stockData3BestMonth['Sales']
group_names = stockData3BestMonth['City']
#group_mean = np.mean(group_data)
fig, ax = plt.subplots()
plt.style.use('seaborn-paper')
labels = ax.get_xticklabels()
ax.set(xlabel='Sales', ylabel='City',title='Each Month Sales By Cities')
plt.figure(figsize=(90, 20))
ax.barh(group_names, group_data)
<BarContainer object of 120 artists>
<Figure size 7200x1600 with 0 Axes>
Since there are different ways of Visualizing they I presentesd the Total Sales by each City into a different data Visulization form to have the best explanation and a better understanding of the bout put for our Data. Above is a Bar plot of Total Sum of sales by each City in our Market segment.
## Top sales Made in all month from the highiest to the lowerst
##stockData3BestMonthsort = stockData3BestMonth.sort_values(["QuantityOrdered"], ascending = False)
##stockData3BestMonthsort.head(10)
## Grouping All state and Mounth How much they purchase ou product by every month
pd.set_option("display.max_rows", None, "display.max_columns", None)
stockDataAllMonthGropued = stockData3.groupby(['City','Month'], as_index = True).agg({'Sales':['sum','mean','max','min']}).round(2)
stockDataAllMonthGropued
| Sales | |||||
|---|---|---|---|---|---|
| sum | mean | max | min | ||
| City | Month | ||||
| Atlanta(GA) | 1 | 149159.54 | 190.01 | 1700.00 | 2.99 |
| 10 | 306293.01 | 191.19 | 1700.00 | 2.99 | |
| 11 | 275338.70 | 194.72 | 1700.00 | 2.99 | |
| 12 | 360899.26 | 181.45 | 1700.00 | 2.99 | |
| 2 | 176470.30 | 188.54 | 1700.00 | 2.99 | |
| 3 | 231905.38 | 186.27 | 1700.00 | 2.99 | |
| 4 | 284448.91 | 193.24 | 1700.00 | 2.99 | |
| 5 | 238853.99 | 179.72 | 1700.00 | 2.99 | |
| 6 | 219816.47 | 198.57 | 1700.00 | 2.99 | |
| 7 | 211766.47 | 184.79 | 1700.00 | 2.99 | |
| 8 | 169267.66 | 179.88 | 1700.00 | 2.99 | |
| 9 | 171278.89 | 187.19 | 1700.00 | 2.99 | |
| Austin(TX) | 1 | 88087.06 | 166.52 | 1700.00 | 2.99 |
| 10 | 203196.12 | 186.08 | 1700.00 | 2.99 | |
| 11 | 171286.47 | 197.11 | 1700.00 | 2.99 | |
| 12 | 233777.09 | 173.43 | 1700.00 | 2.99 | |
| 2 | 108787.40 | 174.06 | 1700.00 | 2.99 | |
| 3 | 154549.27 | 183.77 | 1700.00 | 2.99 | |
| 4 | 172683.59 | 177.48 | 1700.00 | 2.99 | |
| 5 | 160635.22 | 191.69 | 1700.00 | 2.99 | |
| 6 | 144057.29 | 201.48 | 1700.00 | 2.99 | |
| 7 | 150324.93 | 197.02 | 1700.00 | 2.99 | |
| 8 | 125713.61 | 193.70 | 1700.00 | 2.99 | |
| 9 | 106483.70 | 160.61 | 1700.00 | 2.99 | |
| Boston(MA) | 1 | 201088.49 | 191.33 | 1700.00 | 2.99 |
| 10 | 367036.39 | 168.75 | 1999.98 | 2.99 | |
| 11 | 351546.02 | 183.19 | 1700.00 | 2.99 | |
| 12 | 509599.16 | 189.09 | 1700.00 | 2.99 | |
| 2 | 214808.36 | 171.16 | 1700.00 | 2.99 | |
| 3 | 301023.81 | 182.99 | 1700.00 | 2.99 | |
| 4 | 353807.11 | 184.56 | 1700.00 | 2.99 | |
| 5 | 328803.65 | 182.06 | 3400.00 | 2.99 | |
| 6 | 254747.89 | 183.27 | 1700.00 | 2.99 | |
| 7 | 291497.14 | 187.70 | 1700.00 | 2.99 | |
| 8 | 239275.26 | 192.34 | 1700.00 | 2.99 | |
| 9 | 248408.73 | 193.46 | 1700.00 | 2.99 | |
| Dallas(TX) | 1 | 143462.51 | 182.99 | 1700.00 | 2.99 |
| 10 | 323135.60 | 197.15 | 1700.00 | 2.99 | |
| 11 | 248609.56 | 181.73 | 1700.00 | 2.99 | |
| 12 | 380718.85 | 189.70 | 1700.00 | 2.99 | |
| 2 | 186667.99 | 189.70 | 1700.00 | 2.99 | |
| 3 | 222376.68 | 185.16 | 1700.00 | 2.99 | |
| 4 | 251360.48 | 186.33 | 1700.00 | 2.99 | |
| 5 | 268456.49 | 188.92 | 1700.00 | 2.99 | |
| 6 | 186885.75 | 175.81 | 1700.00 | 2.99 | |
| 7 | 212325.17 | 192.67 | 1700.00 | 2.99 | |
| 8 | 179763.46 | 185.71 | 1700.00 | 2.99 | |
| 9 | 164212.86 | 175.82 | 1700.00 | 2.99 | |
| Los Angeles(CA) | 1 | 288601.90 | 188.75 | 1700.00 | 2.99 |
| 10 | 612453.25 | 185.82 | 1700.00 | 2.99 | |
| 11 | 499690.79 | 181.97 | 1700.00 | 2.99 | |
| 12 | 684044.84 | 175.44 | 1700.00 | 2.99 | |
| 2 | 342061.66 | 180.03 | 1700.00 | 2.99 | |
| 3 | 429929.37 | 175.05 | 1700.00 | 2.99 | |
| 4 | 550264.02 | 181.91 | 1700.00 | 2.99 | |
| 5 | 499689.21 | 194.58 | 1700.00 | 2.99 | |
| 6 | 451531.93 | 204.96 | 1700.00 | 2.99 | |
| 7 | 394334.64 | 176.83 | 1700.00 | 2.99 | |
| 8 | 345893.50 | 184.87 | 1700.00 | 2.99 | |
| 9 | 354075.69 | 188.14 | 1700.00 | 2.99 | |
| New York City(NY) | 1 | 260591.29 | 198.47 | 1999.98 | 2.99 |
| 10 | 486954.41 | 183.96 | 1700.00 | 2.99 | |
| 11 | 428180.32 | 181.82 | 1700.00 | 2.99 | |
| 12 | 646770.83 | 190.11 | 1700.00 | 2.99 | |
| 2 | 305372.26 | 189.79 | 1700.00 | 2.99 | |
| 3 | 367262.20 | 185.77 | 1700.00 | 2.99 | |
| 4 | 449447.75 | 184.28 | 3400.00 | 2.99 | |
| 5 | 436126.40 | 192.38 | 1700.00 | 2.99 | |
| 6 | 324148.58 | 182.62 | 1700.00 | 2.99 | |
| 7 | 355716.10 | 184.31 | 1700.00 | 2.99 | |
| 8 | 303183.46 | 186.12 | 1700.00 | 2.99 | |
| 9 | 300563.83 | 196.06 | 1700.00 | 2.99 | |
| Portland(ME) | 1 | 22708.80 | 184.62 | 1700.00 | 2.99 |
| 10 | 52322.52 | 208.46 | 1700.00 | 2.99 | |
| 11 | 34681.22 | 150.79 | 1700.00 | 2.99 | |
| 12 | 51966.07 | 164.97 | 1700.00 | 2.99 | |
| 2 | 29845.49 | 168.62 | 1700.00 | 2.99 | |
| 3 | 30516.29 | 162.32 | 1700.00 | 2.99 | |
| 4 | 42536.49 | 175.05 | 1700.00 | 2.99 | |
| 5 | 57978.76 | 261.17 | 1700.00 | 2.99 | |
| 6 | 30025.33 | 152.41 | 1700.00 | 2.99 | |
| 7 | 32421.14 | 163.74 | 1700.00 | 2.99 | |
| 8 | 35996.60 | 216.85 | 1700.00 | 2.99 | |
| 9 | 28759.56 | 198.34 | 1700.00 | 2.99 | |
| Portland(OR) | 1 | 92276.76 | 183.82 | 1700.00 | 2.99 |
| 10 | 201778.34 | 178.09 | 1700.00 | 2.99 | |
| 11 | 173210.70 | 185.05 | 1700.00 | 2.99 | |
| 12 | 251748.04 | 189.00 | 1700.00 | 2.99 | |
| 2 | 119606.37 | 182.05 | 1700.00 | 2.99 | |
| 3 | 156691.72 | 196.60 | 1700.00 | 2.99 | |
| 4 | 197441.63 | 199.03 | 1700.00 | 2.99 | |
| 5 | 173729.25 | 183.84 | 1700.00 | 2.99 | |
| 6 | 139562.02 | 187.33 | 1700.00 | 2.99 | |
| 7 | 143994.49 | 199.71 | 1700.00 | 2.99 | |
| 8 | 116881.14 | 178.17 | 1700.00 | 2.99 | |
| 9 | 103811.88 | 174.77 | 1700.00 | 2.99 | |
| San Francisco(CA) | 1 | 435588.33 | 184.10 | 1700.00 | 2.99 |
| 10 | 866700.98 | 181.66 | 1700.00 | 2.99 | |
| 11 | 764979.29 | 177.28 | 1700.00 | 2.99 | |
| 12 | 1106601.27 | 183.85 | 1700.00 | 2.99 | |
| 2 | 547072.34 | 188.32 | 1700.00 | 2.99 | |
| 3 | 693726.96 | 192.54 | 1700.00 | 2.99 | |
| 4 | 812426.19 | 183.56 | 3400.00 | 2.99 | |
| 5 | 776679.49 | 197.73 | 1700.00 | 2.99 | |
| 6 | 613173.48 | 185.64 | 3400.00 | 2.99 | |
| 7 | 642881.76 | 182.07 | 1700.00 | 2.99 | |
| 8 | 538778.10 | 190.25 | 1700.00 | 2.99 | |
| 9 | 463595.72 | 169.63 | 1700.00 | 2.99 | |
| Seattle(WA) | 1 | 140692.05 | 193.52 | 1700.00 | 2.99 |
| 10 | 316856.26 | 189.06 | 1700.00 | 2.99 | |
| 11 | 252080.13 | 177.40 | 1700.00 | 2.99 | |
| 12 | 387317.93 | 195.81 | 1700.00 | 2.99 | |
| 2 | 171330.25 | 184.82 | 1700.00 | 2.99 | |
| 3 | 219118.70 | 182.60 | 1700.00 | 2.99 | |
| 4 | 276254.07 | 191.44 | 1700.00 | 2.99 | |
| 5 | 211654.29 | 170.41 | 1700.00 | 2.99 | |
| 6 | 213853.52 | 202.51 | 1700.00 | 2.99 | |
| 7 | 212513.92 | 189.91 | 1700.00 | 2.99 | |
| 8 | 189715.09 | 188.77 | 1700.00 | 2.99 | |
| 9 | 156369.27 | 166.70 | 1700.00 | 2.99 | |
stockDataAllMonthGropuedSave = pd.DataFrame(stockDataAllMonthGropued)
stockDataAllMonthGropuedSave
| Sales | |||||
|---|---|---|---|---|---|
| sum | mean | max | min | ||
| City | Month | ||||
| Atlanta(GA) | 1 | 149159.54 | 190.01 | 1700.00 | 2.99 |
| 10 | 306293.01 | 191.19 | 1700.00 | 2.99 | |
| 11 | 275338.70 | 194.72 | 1700.00 | 2.99 | |
| 12 | 360899.26 | 181.45 | 1700.00 | 2.99 | |
| 2 | 176470.30 | 188.54 | 1700.00 | 2.99 | |
| 3 | 231905.38 | 186.27 | 1700.00 | 2.99 | |
| 4 | 284448.91 | 193.24 | 1700.00 | 2.99 | |
| 5 | 238853.99 | 179.72 | 1700.00 | 2.99 | |
| 6 | 219816.47 | 198.57 | 1700.00 | 2.99 | |
| 7 | 211766.47 | 184.79 | 1700.00 | 2.99 | |
| 8 | 169267.66 | 179.88 | 1700.00 | 2.99 | |
| 9 | 171278.89 | 187.19 | 1700.00 | 2.99 | |
| Austin(TX) | 1 | 88087.06 | 166.52 | 1700.00 | 2.99 |
| 10 | 203196.12 | 186.08 | 1700.00 | 2.99 | |
| 11 | 171286.47 | 197.11 | 1700.00 | 2.99 | |
| 12 | 233777.09 | 173.43 | 1700.00 | 2.99 | |
| 2 | 108787.40 | 174.06 | 1700.00 | 2.99 | |
| 3 | 154549.27 | 183.77 | 1700.00 | 2.99 | |
| 4 | 172683.59 | 177.48 | 1700.00 | 2.99 | |
| 5 | 160635.22 | 191.69 | 1700.00 | 2.99 | |
| 6 | 144057.29 | 201.48 | 1700.00 | 2.99 | |
| 7 | 150324.93 | 197.02 | 1700.00 | 2.99 | |
| 8 | 125713.61 | 193.70 | 1700.00 | 2.99 | |
| 9 | 106483.70 | 160.61 | 1700.00 | 2.99 | |
| Boston(MA) | 1 | 201088.49 | 191.33 | 1700.00 | 2.99 |
| 10 | 367036.39 | 168.75 | 1999.98 | 2.99 | |
| 11 | 351546.02 | 183.19 | 1700.00 | 2.99 | |
| 12 | 509599.16 | 189.09 | 1700.00 | 2.99 | |
| 2 | 214808.36 | 171.16 | 1700.00 | 2.99 | |
| 3 | 301023.81 | 182.99 | 1700.00 | 2.99 | |
| 4 | 353807.11 | 184.56 | 1700.00 | 2.99 | |
| 5 | 328803.65 | 182.06 | 3400.00 | 2.99 | |
| 6 | 254747.89 | 183.27 | 1700.00 | 2.99 | |
| 7 | 291497.14 | 187.70 | 1700.00 | 2.99 | |
| 8 | 239275.26 | 192.34 | 1700.00 | 2.99 | |
| 9 | 248408.73 | 193.46 | 1700.00 | 2.99 | |
| Dallas(TX) | 1 | 143462.51 | 182.99 | 1700.00 | 2.99 |
| 10 | 323135.60 | 197.15 | 1700.00 | 2.99 | |
| 11 | 248609.56 | 181.73 | 1700.00 | 2.99 | |
| 12 | 380718.85 | 189.70 | 1700.00 | 2.99 | |
| 2 | 186667.99 | 189.70 | 1700.00 | 2.99 | |
| 3 | 222376.68 | 185.16 | 1700.00 | 2.99 | |
| 4 | 251360.48 | 186.33 | 1700.00 | 2.99 | |
| 5 | 268456.49 | 188.92 | 1700.00 | 2.99 | |
| 6 | 186885.75 | 175.81 | 1700.00 | 2.99 | |
| 7 | 212325.17 | 192.67 | 1700.00 | 2.99 | |
| 8 | 179763.46 | 185.71 | 1700.00 | 2.99 | |
| 9 | 164212.86 | 175.82 | 1700.00 | 2.99 | |
| Los Angeles(CA) | 1 | 288601.90 | 188.75 | 1700.00 | 2.99 |
| 10 | 612453.25 | 185.82 | 1700.00 | 2.99 | |
| 11 | 499690.79 | 181.97 | 1700.00 | 2.99 | |
| 12 | 684044.84 | 175.44 | 1700.00 | 2.99 | |
| 2 | 342061.66 | 180.03 | 1700.00 | 2.99 | |
| 3 | 429929.37 | 175.05 | 1700.00 | 2.99 | |
| 4 | 550264.02 | 181.91 | 1700.00 | 2.99 | |
| 5 | 499689.21 | 194.58 | 1700.00 | 2.99 | |
| 6 | 451531.93 | 204.96 | 1700.00 | 2.99 | |
| 7 | 394334.64 | 176.83 | 1700.00 | 2.99 | |
| 8 | 345893.50 | 184.87 | 1700.00 | 2.99 | |
| 9 | 354075.69 | 188.14 | 1700.00 | 2.99 | |
| New York City(NY) | 1 | 260591.29 | 198.47 | 1999.98 | 2.99 |
| 10 | 486954.41 | 183.96 | 1700.00 | 2.99 | |
| 11 | 428180.32 | 181.82 | 1700.00 | 2.99 | |
| 12 | 646770.83 | 190.11 | 1700.00 | 2.99 | |
| 2 | 305372.26 | 189.79 | 1700.00 | 2.99 | |
| 3 | 367262.20 | 185.77 | 1700.00 | 2.99 | |
| 4 | 449447.75 | 184.28 | 3400.00 | 2.99 | |
| 5 | 436126.40 | 192.38 | 1700.00 | 2.99 | |
| 6 | 324148.58 | 182.62 | 1700.00 | 2.99 | |
| 7 | 355716.10 | 184.31 | 1700.00 | 2.99 | |
| 8 | 303183.46 | 186.12 | 1700.00 | 2.99 | |
| 9 | 300563.83 | 196.06 | 1700.00 | 2.99 | |
| Portland(ME) | 1 | 22708.80 | 184.62 | 1700.00 | 2.99 |
| 10 | 52322.52 | 208.46 | 1700.00 | 2.99 | |
| 11 | 34681.22 | 150.79 | 1700.00 | 2.99 | |
| 12 | 51966.07 | 164.97 | 1700.00 | 2.99 | |
| 2 | 29845.49 | 168.62 | 1700.00 | 2.99 | |
| 3 | 30516.29 | 162.32 | 1700.00 | 2.99 | |
| 4 | 42536.49 | 175.05 | 1700.00 | 2.99 | |
| 5 | 57978.76 | 261.17 | 1700.00 | 2.99 | |
| 6 | 30025.33 | 152.41 | 1700.00 | 2.99 | |
| 7 | 32421.14 | 163.74 | 1700.00 | 2.99 | |
| 8 | 35996.60 | 216.85 | 1700.00 | 2.99 | |
| 9 | 28759.56 | 198.34 | 1700.00 | 2.99 | |
| Portland(OR) | 1 | 92276.76 | 183.82 | 1700.00 | 2.99 |
| 10 | 201778.34 | 178.09 | 1700.00 | 2.99 | |
| 11 | 173210.70 | 185.05 | 1700.00 | 2.99 | |
| 12 | 251748.04 | 189.00 | 1700.00 | 2.99 | |
| 2 | 119606.37 | 182.05 | 1700.00 | 2.99 | |
| 3 | 156691.72 | 196.60 | 1700.00 | 2.99 | |
| 4 | 197441.63 | 199.03 | 1700.00 | 2.99 | |
| 5 | 173729.25 | 183.84 | 1700.00 | 2.99 | |
| 6 | 139562.02 | 187.33 | 1700.00 | 2.99 | |
| 7 | 143994.49 | 199.71 | 1700.00 | 2.99 | |
| 8 | 116881.14 | 178.17 | 1700.00 | 2.99 | |
| 9 | 103811.88 | 174.77 | 1700.00 | 2.99 | |
| San Francisco(CA) | 1 | 435588.33 | 184.10 | 1700.00 | 2.99 |
| 10 | 866700.98 | 181.66 | 1700.00 | 2.99 | |
| 11 | 764979.29 | 177.28 | 1700.00 | 2.99 | |
| 12 | 1106601.27 | 183.85 | 1700.00 | 2.99 | |
| 2 | 547072.34 | 188.32 | 1700.00 | 2.99 | |
| 3 | 693726.96 | 192.54 | 1700.00 | 2.99 | |
| 4 | 812426.19 | 183.56 | 3400.00 | 2.99 | |
| 5 | 776679.49 | 197.73 | 1700.00 | 2.99 | |
| 6 | 613173.48 | 185.64 | 3400.00 | 2.99 | |
| 7 | 642881.76 | 182.07 | 1700.00 | 2.99 | |
| 8 | 538778.10 | 190.25 | 1700.00 | 2.99 | |
| 9 | 463595.72 | 169.63 | 1700.00 | 2.99 | |
| Seattle(WA) | 1 | 140692.05 | 193.52 | 1700.00 | 2.99 |
| 10 | 316856.26 | 189.06 | 1700.00 | 2.99 | |
| 11 | 252080.13 | 177.40 | 1700.00 | 2.99 | |
| 12 | 387317.93 | 195.81 | 1700.00 | 2.99 | |
| 2 | 171330.25 | 184.82 | 1700.00 | 2.99 | |
| 3 | 219118.70 | 182.60 | 1700.00 | 2.99 | |
| 4 | 276254.07 | 191.44 | 1700.00 | 2.99 | |
| 5 | 211654.29 | 170.41 | 1700.00 | 2.99 | |
| 6 | 213853.52 | 202.51 | 1700.00 | 2.99 | |
| 7 | 212513.92 | 189.91 | 1700.00 | 2.99 | |
| 8 | 189715.09 | 188.77 | 1700.00 | 2.99 | |
| 9 | 156369.27 | 166.70 | 1700.00 | 2.99 | |
## stockDataAllMonthGropuedSave.to_csv('stockDataAllMonthGropuedSave3.csv')
The results of the distribution table tell managers about a descriptive Statistics of how each City within our Market segment performed in each month as previous Analysis but this time we need to understand other statistics such as "Mean", that is the average sum of sales or the average sales per month. As a Company Junior Analyst, I will need to put more interpretation on this result to be able to communicate properly to manager and all stakeholders of the company. First, the Column "City" returns all Cities in our Marketing segment, Second, the column "Month" is the particular month in which sales was sum up together to arrive at an actual sum of total sales in that particular Month. Third, the Column "Sum", this is the Total summation of all Purchases that is ("Total Quantity of Order") * ("Price Each"). Again, "Mean", that is the average sum of sales or the average sales per month, the Column "Max", this is the Maximum price of an Item purchased with the month and last, "Min" which refers to the Minimum item price ordered in that particular Month. From this observation, we are certain and sure that, the minimum item price for our product purchased by our customers was $ 2.99 and the Maximum price of our products is $ 1700.00. In a Decision support System, Strategic Managers can evaluate this performance on Budgetary control, where management tool is a key element to set realistic performance target and then monitor subsequent results base on City Average and total sales per month to see whether or not our business is on the right course and to be able to provide aa definite goal and objectives that serves as benchmark to evaluate performance.
## Per Items Bought in individuals in Each Month
pd.set_option("display.max_rows", None, "display.max_columns", None)
stockDataAllMonthGropued = stockData3.groupby(['City','Month', 'Product'], as_index = True).agg({'Sales':['sum','mean','count','max','min']}).round(0)
stockDataAllMonthGropued
| Sales | |||||||
|---|---|---|---|---|---|---|---|
| sum | mean | count | max | min | |||
| City | Month | Product | |||||
| Atlanta(GA) | 1 | 20in Monitor | 1650.0 | 118.0 | 14 | 220.0 | 110.0 |
| 27in 4K Gaming Monitor | 7410.0 | 390.0 | 19 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4650.0 | 150.0 | 31 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 8360.0 | 380.0 | 22 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 396.0 | 5.0 | 79 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 392.0 | 5.0 | 87 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 10350.0 | 150.0 | 69 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 6199.0 | 100.0 | 62 | 100.0 | 100.0 | ||
| Flatscreen TV | 6600.0 | 300.0 | 22 | 300.0 | 300.0 | ||
| Google Phone | 14400.0 | 600.0 | 24 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1659.0 | 17.0 | 98 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 25500.0 | 1700.0 | 15 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 28000.0 | 1000.0 | 28 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1076.0 | 12.0 | 87 | 24.0 | 12.0 | ||
| Vareebadd Phone | 2800.0 | 400.0 | 7 | 400.0 | 400.0 | ||
| Wired Headphones | 1019.0 | 13.0 | 79 | 36.0 | 12.0 | ||
| iPhone | 24500.0 | 700.0 | 35 | 700.0 | 700.0 | ||
| 10 | 20in Monitor | 3190.0 | 110.0 | 29 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 23789.0 | 390.0 | 61 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 10049.0 | 150.0 | 67 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 19759.0 | 387.0 | 51 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 837.0 | 5.0 | 164 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 759.0 | 4.0 | 172 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 20250.0 | 150.0 | 135 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 10899.0 | 103.0 | 106 | 200.0 | 100.0 | ||
| Flatscreen TV | 15900.0 | 300.0 | 53 | 300.0 | 300.0 | ||
| Google Phone | 25800.0 | 600.0 | 43 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3050.0 | 16.0 | 190 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 76500.0 | 1700.0 | 45 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 37000.0 | 1000.0 | 37 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2928.0 | 13.0 | 223 | 36.0 | 12.0 | ||
| Vareebadd Phone | 6000.0 | 400.0 | 15 | 400.0 | 400.0 | ||
| Wired Headphones | 1882.0 | 13.0 | 142 | 36.0 | 12.0 | ||
| iPhone | 44100.0 | 700.0 | 63 | 700.0 | 700.0 | ||
| 11 | 20in Monitor | 3740.0 | 110.0 | 34 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 19110.0 | 390.0 | 49 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 8399.0 | 153.0 | 55 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 16720.0 | 389.0 | 43 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 753.0 | 5.0 | 146 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 649.0 | 4.0 | 155 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 16050.0 | 150.0 | 107 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 9899.0 | 101.0 | 98 | 200.0 | 100.0 | ||
| Flatscreen TV | 9900.0 | 300.0 | 33 | 300.0 | 300.0 | ||
| Google Phone | 26400.0 | 600.0 | 44 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2736.0 | 16.0 | 172 | 60.0 | 15.0 | ||
| Macbook Pro Laptop | 83300.0 | 1700.0 | 49 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 30000.0 | 1000.0 | 30 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2366.0 | 13.0 | 181 | 48.0 | 12.0 | ||
| Vareebadd Phone | 5200.0 | 400.0 | 13 | 400.0 | 400.0 | ||
| Wired Headphones | 1918.0 | 13.0 | 150 | 36.0 | 12.0 | ||
| iPhone | 32200.0 | 716.0 | 45 | 1400.0 | 700.0 | ||
| 12 | 20in Monitor | 5390.0 | 110.0 | 49 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 29249.0 | 390.0 | 75 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 10799.0 | 152.0 | 71 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 27739.0 | 385.0 | 72 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 1206.0 | 5.0 | 226 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 972.0 | 4.0 | 221 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 26100.0 | 150.0 | 174 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 14099.0 | 101.0 | 140 | 200.0 | 100.0 | ||
| Flatscreen TV | 13200.0 | 300.0 | 44 | 300.0 | 300.0 | ||
| Google Phone | 33600.0 | 600.0 | 56 | 600.0 | 600.0 | ||
| LG Dryer | 7200.0 | 600.0 | 12 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3498.0 | 16.0 | 223 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 76500.0 | 1700.0 | 45 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 52999.0 | 1000.0 | 53 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3346.0 | 13.0 | 260 | 36.0 | 12.0 | ||
| Vareebadd Phone | 9200.0 | 400.0 | 23 | 400.0 | 400.0 | ||
| Wired Headphones | 2302.0 | 13.0 | 182 | 24.0 | 12.0 | ||
| iPhone | 39900.0 | 700.0 | 57 | 700.0 | 700.0 | ||
| 2 | 20in Monitor | 2090.0 | 110.0 | 19 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 10140.0 | 390.0 | 26 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4500.0 | 150.0 | 30 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 12920.0 | 380.0 | 34 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 515.0 | 5.0 | 103 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 454.0 | 4.0 | 105 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 12000.0 | 150.0 | 80 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 6799.0 | 100.0 | 68 | 100.0 | 100.0 | ||
| Flatscreen TV | 9900.0 | 300.0 | 33 | 300.0 | 300.0 | ||
| Google Phone | 13800.0 | 600.0 | 23 | 600.0 | 600.0 | ||
| LG Dryer | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| LG Washing Machine | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1809.0 | 16.0 | 113 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 39100.0 | 1700.0 | 23 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 27000.0 | 1000.0 | 27 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1625.0 | 13.0 | 124 | 36.0 | 12.0 | ||
| Vareebadd Phone | 3200.0 | 400.0 | 8 | 400.0 | 400.0 | ||
| Wired Headphones | 1019.0 | 13.0 | 77 | 36.0 | 12.0 | ||
| iPhone | 26600.0 | 700.0 | 38 | 700.0 | 700.0 | ||
| 3 | 20in Monitor | 3410.0 | 110.0 | 31 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 14430.0 | 401.0 | 36 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 6450.0 | 154.0 | 42 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 19000.0 | 388.0 | 49 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 695.0 | 5.0 | 138 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 547.0 | 4.0 | 133 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 16800.0 | 150.0 | 112 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 8299.0 | 100.0 | 83 | 100.0 | 100.0 | ||
| Flatscreen TV | 11100.0 | 300.0 | 37 | 300.0 | 300.0 | ||
| Google Phone | 27600.0 | 600.0 | 46 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2332.0 | 16.0 | 149 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 45900.0 | 1700.0 | 27 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 23000.0 | 1000.0 | 23 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1613.0 | 13.0 | 126 | 36.0 | 12.0 | ||
| Vareebadd Phone | 7600.0 | 400.0 | 19 | 400.0 | 400.0 | ||
| Wired Headphones | 1930.0 | 14.0 | 134 | 48.0 | 12.0 | ||
| iPhone | 36400.0 | 700.0 | 52 | 700.0 | 700.0 | ||
| 4 | 20in Monitor | 3300.0 | 110.0 | 30 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 13650.0 | 390.0 | 35 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 10049.0 | 150.0 | 67 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 15580.0 | 380.0 | 41 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 806.0 | 5.0 | 162 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 715.0 | 4.0 | 161 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 18900.0 | 150.0 | 126 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 10799.0 | 100.0 | 108 | 100.0 | 100.0 | ||
| Flatscreen TV | 12900.0 | 300.0 | 43 | 300.0 | 300.0 | ||
| Google Phone | 27600.0 | 600.0 | 46 | 600.0 | 600.0 | ||
| LG Dryer | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2885.0 | 16.0 | 179 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 64600.0 | 1700.0 | 38 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 37000.0 | 1000.0 | 37 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2103.0 | 13.0 | 161 | 48.0 | 12.0 | ||
| Vareebadd Phone | 7600.0 | 400.0 | 19 | 400.0 | 400.0 | ||
| Wired Headphones | 1763.0 | 13.0 | 141 | 36.0 | 12.0 | ||
| iPhone | 47600.0 | 710.0 | 67 | 1400.0 | 700.0 | ||
| 5 | 20in Monitor | 2860.0 | 110.0 | 26 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 14040.0 | 390.0 | 36 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 7949.0 | 150.0 | 53 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 14820.0 | 380.0 | 39 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 783.0 | 5.0 | 159 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 628.0 | 5.0 | 132 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 17250.0 | 151.0 | 114 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 9999.0 | 101.0 | 99 | 200.0 | 100.0 | ||
| Flatscreen TV | 9600.0 | 300.0 | 32 | 300.0 | 300.0 | ||
| Google Phone | 25800.0 | 600.0 | 43 | 600.0 | 600.0 | ||
| LG Dryer | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2796.0 | 16.0 | 170 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 51000.0 | 1700.0 | 30 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 30000.0 | 1000.0 | 30 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2055.0 | 13.0 | 159 | 24.0 | 12.0 | ||
| Vareebadd Phone | 7200.0 | 400.0 | 18 | 400.0 | 400.0 | ||
| Wired Headphones | 1775.0 | 14.0 | 130 | 36.0 | 12.0 | ||
| iPhone | 34300.0 | 700.0 | 49 | 700.0 | 700.0 | ||
| 6 | 20in Monitor | 2970.0 | 110.0 | 27 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 14040.0 | 390.0 | 36 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6900.0 | 153.0 | 45 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 13680.0 | 380.0 | 36 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 634.0 | 5.0 | 123 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 472.0 | 5.0 | 104 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 14850.0 | 152.0 | 98 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 8899.0 | 100.0 | 89 | 100.0 | 100.0 | ||
| Flatscreen TV | 10500.0 | 300.0 | 35 | 300.0 | 300.0 | ||
| Google Phone | 26400.0 | 600.0 | 44 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 6000.0 | 600.0 | 10 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2048.0 | 16.0 | 129 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 44200.0 | 1700.0 | 26 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 32000.0 | 1000.0 | 32 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1398.0 | 13.0 | 110 | 36.0 | 12.0 | ||
| Vareebadd Phone | 6400.0 | 400.0 | 16 | 400.0 | 400.0 | ||
| Wired Headphones | 1427.0 | 13.0 | 108 | 36.0 | 12.0 | ||
| iPhone | 25200.0 | 700.0 | 36 | 700.0 | 700.0 | ||
| 7 | 20in Monitor | 3410.0 | 110.0 | 31 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 13650.0 | 390.0 | 35 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 8399.0 | 150.0 | 56 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 13300.0 | 380.0 | 35 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 653.0 | 5.0 | 138 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 499.0 | 4.0 | 115 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 15000.0 | 152.0 | 99 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 8799.0 | 100.0 | 88 | 100.0 | 100.0 | ||
| Flatscreen TV | 7800.0 | 300.0 | 26 | 300.0 | 300.0 | ||
| Google Phone | 17400.0 | 600.0 | 29 | 600.0 | 600.0 | ||
| LG Dryer | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| LG Washing Machine | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1973.0 | 16.0 | 124 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 47600.0 | 1700.0 | 28 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 27000.0 | 1000.0 | 27 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1697.0 | 13.0 | 130 | 36.0 | 12.0 | ||
| Vareebadd Phone | 5200.0 | 400.0 | 13 | 400.0 | 400.0 | ||
| Wired Headphones | 1487.0 | 13.0 | 116 | 36.0 | 12.0 | ||
| iPhone | 30100.0 | 700.0 | 43 | 700.0 | 700.0 | ||
| 8 | 20in Monitor | 3300.0 | 114.0 | 29 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 17550.0 | 390.0 | 45 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4500.0 | 150.0 | 30 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 10260.0 | 380.0 | 27 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 545.0 | 5.0 | 109 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 490.0 | 4.0 | 113 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 12300.0 | 150.0 | 82 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 6399.0 | 102.0 | 63 | 200.0 | 100.0 | ||
| Flatscreen TV | 7200.0 | 300.0 | 24 | 300.0 | 300.0 | ||
| Google Phone | 18000.0 | 600.0 | 30 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1674.0 | 16.0 | 104 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 39100.0 | 1700.0 | 23 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 13000.0 | 1000.0 | 13 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1243.0 | 13.0 | 98 | 24.0 | 12.0 | ||
| Vareebadd Phone | 6400.0 | 400.0 | 16 | 400.0 | 400.0 | ||
| Wired Headphones | 1307.0 | 13.0 | 97 | 24.0 | 12.0 | ||
| iPhone | 22400.0 | 700.0 | 32 | 700.0 | 700.0 | ||
| 9 | 20in Monitor | 2310.0 | 122.0 | 19 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 15210.0 | 390.0 | 39 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 5550.0 | 150.0 | 37 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 11020.0 | 380.0 | 29 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 599.0 | 5.0 | 114 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 475.0 | 5.0 | 100 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 10050.0 | 150.0 | 67 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 7299.0 | 100.0 | 73 | 100.0 | 100.0 | ||
| Flatscreen TV | 7500.0 | 326.0 | 23 | 600.0 | 300.0 | ||
| Google Phone | 13800.0 | 600.0 | 23 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1630.0 | 16.0 | 103 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 51000.0 | 1700.0 | 30 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 20000.0 | 1000.0 | 20 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1434.0 | 13.0 | 114 | 24.0 | 12.0 | ||
| Vareebadd Phone | 2400.0 | 400.0 | 6 | 400.0 | 400.0 | ||
| Wired Headphones | 1103.0 | 12.0 | 89 | 24.0 | 12.0 | ||
| iPhone | 17500.0 | 700.0 | 25 | 700.0 | 700.0 | ||
| Austin(TX) | 1 | 20in Monitor | 1320.0 | 110.0 | 12 | 110.0 | 110.0 |
| 27in 4K Gaming Monitor | 5460.0 | 390.0 | 14 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 3750.0 | 156.0 | 24 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 4940.0 | 380.0 | 13 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 280.0 | 5.0 | 57 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 257.0 | 4.0 | 61 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 6750.0 | 150.0 | 45 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 4000.0 | 100.0 | 40 | 100.0 | 100.0 | ||
| Flatscreen TV | 3900.0 | 300.0 | 13 | 300.0 | 300.0 | ||
| Google Phone | 10800.0 | 600.0 | 18 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 867.0 | 15.0 | 56 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 20400.0 | 1700.0 | 12 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 7000.0 | 1000.0 | 7 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 896.0 | 12.0 | 72 | 24.0 | 12.0 | ||
| Vareebadd Phone | 2400.0 | 400.0 | 6 | 400.0 | 400.0 | ||
| Wired Headphones | 767.0 | 13.0 | 58 | 24.0 | 12.0 | ||
| iPhone | 11900.0 | 700.0 | 17 | 700.0 | 700.0 | ||
| 10 | 20in Monitor | 2530.0 | 110.0 | 23 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 18720.0 | 390.0 | 48 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 5850.0 | 150.0 | 39 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 16340.0 | 380.0 | 43 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 564.0 | 5.0 | 113 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 640.0 | 5.0 | 135 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 12600.0 | 150.0 | 84 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 8199.0 | 105.0 | 78 | 200.0 | 100.0 | ||
| Flatscreen TV | 8700.0 | 300.0 | 29 | 300.0 | 300.0 | ||
| Google Phone | 13200.0 | 600.0 | 22 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2138.0 | 16.0 | 137 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 45900.0 | 1700.0 | 27 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 32000.0 | 1000.0 | 32 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1458.0 | 13.0 | 113 | 24.0 | 12.0 | ||
| Vareebadd Phone | 2400.0 | 400.0 | 6 | 400.0 | 400.0 | ||
| Wired Headphones | 1559.0 | 13.0 | 119 | 48.0 | 12.0 | ||
| iPhone | 28000.0 | 700.0 | 40 | 700.0 | 700.0 | ||
| 11 | 20in Monitor | 2970.0 | 110.0 | 27 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 11700.0 | 390.0 | 30 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4950.0 | 155.0 | 32 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 11780.0 | 380.0 | 31 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 511.0 | 5.0 | 102 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 416.0 | 5.0 | 90 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 12450.0 | 150.0 | 83 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 7099.0 | 101.0 | 70 | 200.0 | 100.0 | ||
| Flatscreen TV | 8100.0 | 300.0 | 27 | 300.0 | 300.0 | ||
| Google Phone | 11400.0 | 600.0 | 19 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1390.0 | 16.0 | 87 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 44200.0 | 1700.0 | 26 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 19000.0 | 1000.0 | 19 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1243.0 | 14.0 | 91 | 36.0 | 12.0 | ||
| Vareebadd Phone | 4000.0 | 400.0 | 10 | 400.0 | 400.0 | ||
| Wired Headphones | 1079.0 | 13.0 | 83 | 24.0 | 12.0 | ||
| iPhone | 26600.0 | 700.0 | 38 | 700.0 | 700.0 | ||
| 12 | 20in Monitor | 3520.0 | 110.0 | 32 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 15210.0 | 390.0 | 39 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 5850.0 | 150.0 | 39 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 17100.0 | 380.0 | 45 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 806.0 | 5.0 | 149 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 613.0 | 4.0 | 139 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 20400.0 | 152.0 | 134 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 9799.0 | 101.0 | 97 | 200.0 | 100.0 | ||
| Flatscreen TV | 10800.0 | 300.0 | 36 | 300.0 | 300.0 | ||
| Google Phone | 28200.0 | 600.0 | 47 | 600.0 | 600.0 | ||
| LG Dryer | 5400.0 | 600.0 | 9 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2691.0 | 16.0 | 171 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 44200.0 | 1700.0 | 26 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 24000.0 | 1000.0 | 24 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2163.0 | 14.0 | 160 | 36.0 | 12.0 | ||
| Vareebadd Phone | 7200.0 | 400.0 | 18 | 400.0 | 400.0 | ||
| Wired Headphones | 1727.0 | 13.0 | 134 | 36.0 | 12.0 | ||
| iPhone | 32900.0 | 700.0 | 47 | 700.0 | 700.0 | ||
| 2 | 20in Monitor | 1210.0 | 110.0 | 11 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 8970.0 | 390.0 | 23 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 2400.0 | 150.0 | 16 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 7980.0 | 380.0 | 21 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 253.0 | 5.0 | 52 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 281.0 | 4.0 | 65 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 9150.0 | 150.0 | 61 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 5199.0 | 102.0 | 51 | 200.0 | 100.0 | ||
| Flatscreen TV | 3600.0 | 300.0 | 12 | 300.0 | 300.0 | ||
| Google Phone | 6600.0 | 600.0 | 11 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1465.0 | 17.0 | 88 | 60.0 | 15.0 | ||
| Macbook Pro Laptop | 23800.0 | 1700.0 | 14 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 12000.0 | 1000.0 | 12 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 980.0 | 12.0 | 80 | 24.0 | 12.0 | ||
| Vareebadd Phone | 2000.0 | 400.0 | 5 | 400.0 | 400.0 | ||
| Wired Headphones | 899.0 | 13.0 | 71 | 36.0 | 12.0 | ||
| iPhone | 19600.0 | 700.0 | 28 | 700.0 | 700.0 | ||
| 3 | 20in Monitor | 1870.0 | 117.0 | 16 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 9750.0 | 390.0 | 25 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4200.0 | 150.0 | 28 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 9880.0 | 380.0 | 26 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 518.0 | 5.0 | 96 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 395.0 | 4.0 | 94 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 12750.0 | 150.0 | 85 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 5499.0 | 102.0 | 54 | 200.0 | 100.0 | ||
| Flatscreen TV | 4800.0 | 300.0 | 16 | 300.0 | 300.0 | ||
| Google Phone | 14400.0 | 600.0 | 24 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1734.0 | 16.0 | 109 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 35700.0 | 1700.0 | 21 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 21000.0 | 1000.0 | 21 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1267.0 | 13.0 | 98 | 36.0 | 12.0 | ||
| Vareebadd Phone | 2400.0 | 400.0 | 6 | 400.0 | 400.0 | ||
| Wired Headphones | 1187.0 | 14.0 | 82 | 48.0 | 12.0 | ||
| iPhone | 22400.0 | 700.0 | 32 | 700.0 | 700.0 | ||
| 4 | 20in Monitor | 2750.0 | 110.0 | 25 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 12090.0 | 390.0 | 31 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 5250.0 | 154.0 | 34 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 12920.0 | 380.0 | 34 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 588.0 | 5.0 | 118 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 434.0 | 5.0 | 93 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 12450.0 | 154.0 | 81 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 5799.0 | 102.0 | 57 | 200.0 | 100.0 | ||
| Flatscreen TV | 9000.0 | 300.0 | 30 | 300.0 | 300.0 | ||
| Google Phone | 17400.0 | 600.0 | 29 | 600.0 | 600.0 | ||
| LG Dryer | 4800.0 | 600.0 | 8 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2003.0 | 16.0 | 127 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 32300.0 | 1700.0 | 19 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 13000.0 | 1000.0 | 13 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1338.0 | 13.0 | 103 | 24.0 | 12.0 | ||
| Vareebadd Phone | 4400.0 | 400.0 | 11 | 400.0 | 400.0 | ||
| Wired Headphones | 1463.0 | 13.0 | 110 | 24.0 | 12.0 | ||
| iPhone | 32900.0 | 700.0 | 47 | 700.0 | 700.0 | ||
| 5 | 20in Monitor | 1650.0 | 110.0 | 15 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 8190.0 | 390.0 | 21 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4050.0 | 150.0 | 27 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 10640.0 | 380.0 | 28 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 411.0 | 5.0 | 87 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 544.0 | 5.0 | 106 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 11100.0 | 150.0 | 74 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 5699.0 | 104.0 | 55 | 200.0 | 100.0 | ||
| Flatscreen TV | 3000.0 | 300.0 | 10 | 300.0 | 300.0 | ||
| Google Phone | 16800.0 | 600.0 | 28 | 600.0 | 600.0 | ||
| LG Dryer | 4800.0 | 600.0 | 8 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1734.0 | 16.0 | 106 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 40800.0 | 1700.0 | 24 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 26000.0 | 1000.0 | 26 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1279.0 | 13.0 | 99 | 24.0 | 12.0 | ||
| Vareebadd Phone | 2800.0 | 400.0 | 7 | 400.0 | 400.0 | ||
| Wired Headphones | 1139.0 | 13.0 | 88 | 24.0 | 12.0 | ||
| iPhone | 18200.0 | 700.0 | 26 | 700.0 | 700.0 | ||
| 6 | 20in Monitor | 2310.0 | 115.0 | 20 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 6240.0 | 390.0 | 16 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 5400.0 | 150.0 | 36 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 9120.0 | 380.0 | 24 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 442.0 | 5.0 | 85 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 293.0 | 4.0 | 66 | 9.0 | 3.0 | ||
| Apple Airpods Headphones | 9750.0 | 152.0 | 64 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 4600.0 | 102.0 | 45 | 200.0 | 100.0 | ||
| Flatscreen TV | 6300.0 | 300.0 | 21 | 300.0 | 300.0 | ||
| Google Phone | 12000.0 | 600.0 | 20 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1465.0 | 16.0 | 92 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 45900.0 | 1700.0 | 27 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 14000.0 | 1000.0 | 14 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 968.0 | 13.0 | 77 | 24.0 | 12.0 | ||
| Vareebadd Phone | 4400.0 | 400.0 | 11 | 400.0 | 400.0 | ||
| Wired Headphones | 971.0 | 14.0 | 68 | 24.0 | 12.0 | ||
| iPhone | 17500.0 | 700.0 | 25 | 700.0 | 700.0 | ||
| 7 | 20in Monitor | 1650.0 | 110.0 | 15 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 11700.0 | 390.0 | 30 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4650.0 | 150.0 | 31 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 9880.0 | 380.0 | 26 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 342.0 | 5.0 | 73 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 380.0 | 5.0 | 84 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 10050.0 | 150.0 | 67 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 5499.0 | 100.0 | 55 | 100.0 | 100.0 | ||
| Flatscreen TV | 5700.0 | 300.0 | 19 | 300.0 | 300.0 | ||
| Google Phone | 9000.0 | 600.0 | 15 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1585.0 | 16.0 | 98 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 44200.0 | 1700.0 | 26 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 14000.0 | 1000.0 | 14 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1111.0 | 13.0 | 84 | 24.0 | 12.0 | ||
| Vareebadd Phone | 3600.0 | 400.0 | 9 | 400.0 | 400.0 | ||
| Wired Headphones | 1079.0 | 14.0 | 79 | 36.0 | 12.0 | ||
| iPhone | 21700.0 | 700.0 | 31 | 700.0 | 700.0 | ||
| 8 | 20in Monitor | 1540.0 | 110.0 | 14 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 8580.0 | 390.0 | 22 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 3600.0 | 157.0 | 23 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 7220.0 | 380.0 | 19 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 384.0 | 5.0 | 73 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 380.0 | 5.0 | 83 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 7650.0 | 150.0 | 51 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 3900.0 | 100.0 | 39 | 100.0 | 100.0 | ||
| Flatscreen TV | 4200.0 | 300.0 | 14 | 300.0 | 300.0 | ||
| Google Phone | 12000.0 | 600.0 | 20 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1286.0 | 16.0 | 81 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 30600.0 | 1700.0 | 18 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 16000.0 | 1000.0 | 16 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 920.0 | 13.0 | 70 | 36.0 | 12.0 | ||
| Vareebadd Phone | 5600.0 | 400.0 | 14 | 400.0 | 400.0 | ||
| Wired Headphones | 755.0 | 12.0 | 61 | 24.0 | 12.0 | ||
| iPhone | 17500.0 | 700.0 | 25 | 700.0 | 700.0 | ||
| 9 | 20in Monitor | 1980.0 | 110.0 | 18 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 7410.0 | 390.0 | 19 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4050.0 | 150.0 | 27 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 6840.0 | 380.0 | 18 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 369.0 | 6.0 | 66 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 356.0 | 5.0 | 75 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 7950.0 | 150.0 | 53 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 5399.0 | 102.0 | 53 | 200.0 | 100.0 | ||
| Flatscreen TV | 4500.0 | 300.0 | 15 | 300.0 | 300.0 | ||
| Google Phone | 12600.0 | 600.0 | 21 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1181.0 | 16.0 | 75 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 18700.0 | 1700.0 | 11 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 12000.0 | 1000.0 | 12 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1326.0 | 14.0 | 97 | 36.0 | 12.0 | ||
| Vareebadd Phone | 2000.0 | 400.0 | 5 | 400.0 | 400.0 | ||
| Wired Headphones | 923.0 | 13.0 | 70 | 24.0 | 12.0 | ||
| iPhone | 14700.0 | 700.0 | 21 | 700.0 | 700.0 | ||
| Boston(MA) | 1 | 20in Monitor | 2310.0 | 110.0 | 21 | 110.0 | 110.0 |
| 27in 4K Gaming Monitor | 11310.0 | 390.0 | 29 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6300.0 | 150.0 | 42 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 12160.0 | 380.0 | 32 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 599.0 | 5.0 | 115 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 508.0 | 4.0 | 119 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 13350.0 | 152.0 | 88 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 9099.0 | 100.0 | 91 | 100.0 | 100.0 | ||
| Flatscreen TV | 9300.0 | 300.0 | 31 | 300.0 | 300.0 | ||
| Google Phone | 19800.0 | 600.0 | 33 | 600.0 | 600.0 | ||
| LG Dryer | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1809.0 | 16.0 | 111 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 52700.0 | 1700.0 | 31 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 19000.0 | 1000.0 | 19 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1494.0 | 13.0 | 117 | 24.0 | 12.0 | ||
| Vareebadd Phone | 4000.0 | 400.0 | 10 | 400.0 | 400.0 | ||
| Wired Headphones | 1451.0 | 13.0 | 109 | 36.0 | 12.0 | ||
| iPhone | 28700.0 | 700.0 | 41 | 700.0 | 700.0 | ||
| 10 | 20in Monitor | 4950.0 | 110.0 | 45 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 33929.0 | 390.0 | 87 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 13349.0 | 150.0 | 89 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 19759.0 | 380.0 | 52 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1267.0 | 5.0 | 247 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1184.0 | 4.0 | 267 | 24.0 | 3.0 | ||
| Apple Airpods Headphones | 25950.0 | 150.0 | 173 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 14499.0 | 103.0 | 141 | 200.0 | 100.0 | ||
| Flatscreen TV | 18600.0 | 300.0 | 62 | 300.0 | 300.0 | ||
| Google Phone | 36600.0 | 600.0 | 61 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 6000.0 | 600.0 | 10 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 4111.0 | 16.0 | 260 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 76500.0 | 1700.0 | 45 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 50000.0 | 1020.0 | 49 | 2000.0 | 1000.0 | ||
| USB-C Charging Cable | 3597.0 | 13.0 | 277 | 36.0 | 12.0 | ||
| Vareebadd Phone | 8000.0 | 400.0 | 20 | 400.0 | 400.0 | ||
| Wired Headphones | 2842.0 | 13.0 | 224 | 24.0 | 12.0 | ||
| iPhone | 44100.0 | 700.0 | 63 | 700.0 | 700.0 | ||
| 11 | 20in Monitor | 4620.0 | 110.0 | 42 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 23009.0 | 390.0 | 59 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 11249.0 | 150.0 | 75 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 26979.0 | 380.0 | 71 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1167.0 | 5.0 | 222 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 963.0 | 4.0 | 218 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 21600.0 | 151.0 | 143 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 13899.0 | 102.0 | 136 | 200.0 | 100.0 | ||
| Flatscreen TV | 17400.0 | 300.0 | 58 | 300.0 | 300.0 | ||
| Google Phone | 28800.0 | 600.0 | 48 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3842.0 | 17.0 | 230 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 86700.0 | 1700.0 | 51 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 40000.0 | 1000.0 | 40 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2808.0 | 13.0 | 220 | 36.0 | 12.0 | ||
| Vareebadd Phone | 6000.0 | 400.0 | 15 | 400.0 | 400.0 | ||
| Wired Headphones | 2710.0 | 13.0 | 204 | 36.0 | 12.0 | ||
| iPhone | 53200.0 | 700.0 | 76 | 700.0 | 700.0 | ||
| 12 | 20in Monitor | 6709.0 | 110.0 | 61 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 42509.0 | 394.0 | 108 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 15449.0 | 150.0 | 103 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 35719.0 | 380.0 | 94 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1432.0 | 5.0 | 287 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1372.0 | 5.0 | 302 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 33000.0 | 152.0 | 217 | 450.0 | 150.0 | ||
| Bose SoundSport Headphones | 19898.0 | 100.0 | 199 | 100.0 | 100.0 | ||
| Flatscreen TV | 21000.0 | 304.0 | 69 | 600.0 | 300.0 | ||
| Google Phone | 43200.0 | 600.0 | 72 | 600.0 | 600.0 | ||
| LG Dryer | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| LG Washing Machine | 6000.0 | 600.0 | 10 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 5307.0 | 16.0 | 331 | 60.0 | 15.0 | ||
| Macbook Pro Laptop | 119000.0 | 1700.0 | 70 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 60999.0 | 1000.0 | 61 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 4266.0 | 13.0 | 323 | 36.0 | 12.0 | ||
| Vareebadd Phone | 12000.0 | 400.0 | 30 | 400.0 | 400.0 | ||
| Wired Headphones | 3237.0 | 13.0 | 245 | 36.0 | 12.0 | ||
| iPhone | 74900.0 | 700.0 | 107 | 700.0 | 700.0 | ||
| 2 | 20in Monitor | 2310.0 | 110.0 | 21 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 19110.0 | 390.0 | 49 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6900.0 | 150.0 | 46 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 18620.0 | 388.0 | 48 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 707.0 | 6.0 | 127 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 598.0 | 4.0 | 146 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 17850.0 | 150.0 | 119 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 9499.0 | 100.0 | 95 | 100.0 | 100.0 | ||
| Flatscreen TV | 12000.0 | 300.0 | 40 | 300.0 | 300.0 | ||
| Google Phone | 22200.0 | 600.0 | 37 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2198.0 | 16.0 | 139 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 25500.0 | 1700.0 | 15 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 27000.0 | 1000.0 | 27 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1804.0 | 13.0 | 137 | 24.0 | 12.0 | ||
| Vareebadd Phone | 8400.0 | 400.0 | 21 | 400.0 | 400.0 | ||
| Wired Headphones | 1715.0 | 13.0 | 132 | 24.0 | 12.0 | ||
| iPhone | 33600.0 | 700.0 | 48 | 700.0 | 700.0 | ||
| 3 | 20in Monitor | 2860.0 | 110.0 | 26 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 18720.0 | 390.0 | 48 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 8849.0 | 150.0 | 59 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 19000.0 | 380.0 | 50 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 945.0 | 5.0 | 180 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 864.0 | 5.0 | 182 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 21450.0 | 151.0 | 142 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 15198.0 | 102.0 | 149 | 200.0 | 100.0 | ||
| Flatscreen TV | 14700.0 | 306.0 | 48 | 600.0 | 300.0 | ||
| Google Phone | 34800.0 | 600.0 | 58 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2855.0 | 16.0 | 179 | 60.0 | 15.0 | ||
| Macbook Pro Laptop | 59500.0 | 1700.0 | 35 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 48000.0 | 1000.0 | 48 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2533.0 | 13.0 | 191 | 48.0 | 12.0 | ||
| Vareebadd Phone | 8000.0 | 400.0 | 20 | 400.0 | 400.0 | ||
| Wired Headphones | 2350.0 | 14.0 | 171 | 36.0 | 12.0 | ||
| iPhone | 35000.0 | 700.0 | 50 | 700.0 | 700.0 | ||
| 4 | 20in Monitor | 3520.0 | 110.0 | 32 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 22619.0 | 390.0 | 58 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 14399.0 | 153.0 | 94 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 25459.0 | 386.0 | 66 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 1206.0 | 5.0 | 225 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1038.0 | 5.0 | 225 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 21900.0 | 150.0 | 146 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 11499.0 | 100.0 | 115 | 100.0 | 100.0 | ||
| Flatscreen TV | 12900.0 | 300.0 | 43 | 300.0 | 300.0 | ||
| Google Phone | 37800.0 | 600.0 | 63 | 600.0 | 600.0 | ||
| LG Dryer | 4800.0 | 600.0 | 8 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3782.0 | 16.0 | 234 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 73100.0 | 1700.0 | 43 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 47000.0 | 1000.0 | 47 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2952.0 | 13.0 | 228 | 36.0 | 12.0 | ||
| Vareebadd Phone | 9600.0 | 400.0 | 24 | 400.0 | 400.0 | ||
| Wired Headphones | 2434.0 | 13.0 | 183 | 36.0 | 12.0 | ||
| iPhone | 56000.0 | 700.0 | 80 | 700.0 | 700.0 | ||
| 5 | 20in Monitor | 3960.0 | 110.0 | 36 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 23399.0 | 390.0 | 60 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 10649.0 | 150.0 | 71 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 25839.0 | 380.0 | 68 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 925.0 | 5.0 | 185 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 915.0 | 4.0 | 216 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 23850.0 | 151.0 | 158 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 12199.0 | 100.0 | 122 | 100.0 | 100.0 | ||
| Flatscreen TV | 16500.0 | 300.0 | 55 | 300.0 | 300.0 | ||
| Google Phone | 31200.0 | 600.0 | 52 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3364.0 | 16.0 | 216 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 68000.0 | 1744.0 | 39 | 3400.0 | 1700.0 | ||
| ThinkPad Laptop | 41000.0 | 1000.0 | 41 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2486.0 | 13.0 | 194 | 36.0 | 12.0 | ||
| Vareebadd Phone | 6400.0 | 400.0 | 16 | 400.0 | 400.0 | ||
| Wired Headphones | 2518.0 | 13.0 | 196 | 36.0 | 12.0 | ||
| iPhone | 49000.0 | 700.0 | 70 | 700.0 | 700.0 | ||
| 6 | 20in Monitor | 3300.0 | 110.0 | 30 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 17550.0 | 390.0 | 45 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 8849.0 | 153.0 | 58 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 18240.0 | 380.0 | 48 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 929.0 | 6.0 | 167 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 736.0 | 5.0 | 152 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 18450.0 | 151.0 | 122 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 9499.0 | 102.0 | 93 | 200.0 | 100.0 | ||
| Flatscreen TV | 11400.0 | 308.0 | 37 | 600.0 | 300.0 | ||
| Google Phone | 22200.0 | 600.0 | 37 | 600.0 | 600.0 | ||
| LG Dryer | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Washing Machine | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2646.0 | 16.0 | 164 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 57800.0 | 1700.0 | 34 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 29000.0 | 1000.0 | 29 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2008.0 | 14.0 | 147 | 36.0 | 12.0 | ||
| Vareebadd Phone | 6800.0 | 400.0 | 17 | 400.0 | 400.0 | ||
| Wired Headphones | 1942.0 | 13.0 | 146 | 24.0 | 12.0 | ||
| iPhone | 35000.0 | 700.0 | 50 | 700.0 | 700.0 | ||
| 7 | 20in Monitor | 3630.0 | 110.0 | 33 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 18330.0 | 390.0 | 47 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 9599.0 | 150.0 | 64 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 15960.0 | 380.0 | 42 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 941.0 | 6.0 | 165 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 807.0 | 5.0 | 179 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 20100.0 | 151.0 | 133 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 9599.0 | 100.0 | 96 | 100.0 | 100.0 | ||
| Flatscreen TV | 11700.0 | 300.0 | 39 | 300.0 | 300.0 | ||
| Google Phone | 29400.0 | 600.0 | 49 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3184.0 | 16.0 | 195 | 60.0 | 15.0 | ||
| Macbook Pro Laptop | 81600.0 | 1700.0 | 48 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 29000.0 | 1000.0 | 29 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2510.0 | 13.0 | 193 | 36.0 | 12.0 | ||
| Vareebadd Phone | 5600.0 | 400.0 | 14 | 400.0 | 400.0 | ||
| Wired Headphones | 2038.0 | 13.0 | 158 | 36.0 | 12.0 | ||
| iPhone | 42700.0 | 700.0 | 61 | 700.0 | 700.0 | ||
| 8 | 20in Monitor | 2530.0 | 110.0 | 23 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 17550.0 | 399.0 | 44 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 7200.0 | 150.0 | 48 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 22039.0 | 380.0 | 58 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 691.0 | 5.0 | 141 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 679.0 | 5.0 | 144 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 15300.0 | 153.0 | 100 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 7699.0 | 103.0 | 75 | 200.0 | 100.0 | ||
| Flatscreen TV | 11700.0 | 300.0 | 39 | 300.0 | 300.0 | ||
| Google Phone | 23400.0 | 616.0 | 38 | 1200.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1973.0 | 16.0 | 124 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 44200.0 | 1700.0 | 26 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 30000.0 | 1000.0 | 30 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1864.0 | 13.0 | 141 | 36.0 | 12.0 | ||
| Vareebadd Phone | 5600.0 | 400.0 | 14 | 400.0 | 400.0 | ||
| Wired Headphones | 1751.0 | 13.0 | 133 | 36.0 | 12.0 | ||
| iPhone | 38500.0 | 700.0 | 55 | 700.0 | 700.0 | ||
| 9 | 20in Monitor | 2640.0 | 110.0 | 24 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 15210.0 | 390.0 | 39 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6750.0 | 153.0 | 44 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 15200.0 | 380.0 | 40 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 772.0 | 5.0 | 154 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 685.0 | 5.0 | 151 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 15150.0 | 150.0 | 101 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 8999.0 | 100.0 | 90 | 100.0 | 100.0 | ||
| Flatscreen TV | 9000.0 | 300.0 | 30 | 300.0 | 300.0 | ||
| Google Phone | 26400.0 | 600.0 | 44 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2168.0 | 15.0 | 140 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 69700.0 | 1700.0 | 41 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 26000.0 | 1000.0 | 26 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2282.0 | 14.0 | 165 | 36.0 | 12.0 | ||
| Vareebadd Phone | 5200.0 | 400.0 | 13 | 400.0 | 400.0 | ||
| Wired Headphones | 1655.0 | 13.0 | 124 | 36.0 | 12.0 | ||
| iPhone | 36400.0 | 714.0 | 51 | 1400.0 | 700.0 | ||
| Dallas(TX) | 1 | 20in Monitor | 2420.0 | 110.0 | 22 | 110.0 | 110.0 |
| 27in 4K Gaming Monitor | 10530.0 | 390.0 | 27 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4500.0 | 150.0 | 30 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 10260.0 | 380.0 | 27 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 538.0 | 5.0 | 103 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 392.0 | 4.0 | 93 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 8700.0 | 150.0 | 58 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 5299.0 | 102.0 | 52 | 200.0 | 100.0 | ||
| Flatscreen TV | 7200.0 | 300.0 | 24 | 300.0 | 300.0 | ||
| Google Phone | 19200.0 | 600.0 | 32 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1331.0 | 16.0 | 83 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 30600.0 | 1700.0 | 18 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 19000.0 | 1000.0 | 19 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1135.0 | 13.0 | 89 | 36.0 | 12.0 | ||
| Vareebadd Phone | 2000.0 | 400.0 | 5 | 400.0 | 400.0 | ||
| Wired Headphones | 959.0 | 13.0 | 74 | 24.0 | 12.0 | ||
| iPhone | 18200.0 | 700.0 | 26 | 700.0 | 700.0 | ||
| 10 | 20in Monitor | 4840.0 | 110.0 | 44 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 21059.0 | 397.0 | 53 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 10499.0 | 152.0 | 69 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 23559.0 | 380.0 | 62 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 883.0 | 5.0 | 177 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 688.0 | 4.0 | 153 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 23100.0 | 152.0 | 152 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 11099.0 | 100.0 | 111 | 100.0 | 100.0 | ||
| Flatscreen TV | 10800.0 | 300.0 | 36 | 300.0 | 300.0 | ||
| Google Phone | 37800.0 | 600.0 | 63 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2781.0 | 16.0 | 176 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 73100.0 | 1700.0 | 43 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 44000.0 | 1000.0 | 44 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2450.0 | 13.0 | 191 | 36.0 | 12.0 | ||
| Vareebadd Phone | 11600.0 | 400.0 | 29 | 400.0 | 400.0 | ||
| Wired Headphones | 2278.0 | 13.0 | 174 | 36.0 | 12.0 | ||
| iPhone | 37800.0 | 700.0 | 54 | 700.0 | 700.0 | ||
| 11 | 20in Monitor | 3080.0 | 110.0 | 28 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 19889.0 | 390.0 | 51 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6450.0 | 161.0 | 40 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 11020.0 | 380.0 | 29 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 902.0 | 5.0 | 182 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 801.0 | 5.0 | 171 | 24.0 | 3.0 | ||
| Apple Airpods Headphones | 15150.0 | 150.0 | 101 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 8899.0 | 100.0 | 89 | 100.0 | 100.0 | ||
| Flatscreen TV | 10800.0 | 300.0 | 36 | 300.0 | 300.0 | ||
| Google Phone | 18000.0 | 600.0 | 30 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2437.0 | 17.0 | 147 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 68000.0 | 1700.0 | 40 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 28000.0 | 1000.0 | 28 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2067.0 | 13.0 | 164 | 24.0 | 12.0 | ||
| Vareebadd Phone | 5200.0 | 400.0 | 13 | 400.0 | 400.0 | ||
| Wired Headphones | 2014.0 | 13.0 | 152 | 36.0 | 12.0 | ||
| iPhone | 39900.0 | 700.0 | 57 | 700.0 | 700.0 | ||
| 12 | 20in Monitor | 4070.0 | 110.0 | 37 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 28469.0 | 390.0 | 73 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 11249.0 | 150.0 | 75 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 27739.0 | 380.0 | 73 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1121.0 | 5.0 | 215 | 27.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1184.0 | 5.0 | 257 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 23550.0 | 153.0 | 154 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 13699.0 | 103.0 | 133 | 200.0 | 100.0 | ||
| Flatscreen TV | 21900.0 | 300.0 | 73 | 300.0 | 300.0 | ||
| Google Phone | 30600.0 | 600.0 | 51 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3872.0 | 16.0 | 235 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 90100.0 | 1700.0 | 53 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 48000.0 | 1000.0 | 48 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2820.0 | 13.0 | 210 | 36.0 | 12.0 | ||
| Vareebadd Phone | 12000.0 | 400.0 | 30 | 400.0 | 400.0 | ||
| Wired Headphones | 2746.0 | 13.0 | 206 | 48.0 | 12.0 | ||
| iPhone | 50400.0 | 700.0 | 72 | 700.0 | 700.0 | ||
| 2 | 20in Monitor | 1870.0 | 110.0 | 17 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 8580.0 | 390.0 | 22 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 5700.0 | 154.0 | 37 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 17100.0 | 389.0 | 44 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 595.0 | 5.0 | 113 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 484.0 | 5.0 | 107 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 11550.0 | 150.0 | 77 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 6099.0 | 100.0 | 61 | 100.0 | 100.0 | ||
| Flatscreen TV | 9300.0 | 300.0 | 31 | 300.0 | 300.0 | ||
| Google Phone | 22200.0 | 600.0 | 37 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1914.0 | 16.0 | 119 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 37400.0 | 1700.0 | 22 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 24000.0 | 1000.0 | 24 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1434.0 | 13.0 | 111 | 36.0 | 12.0 | ||
| Vareebadd Phone | 6400.0 | 400.0 | 16 | 400.0 | 400.0 | ||
| Wired Headphones | 1343.0 | 13.0 | 101 | 24.0 | 12.0 | ||
| iPhone | 25900.0 | 700.0 | 37 | 700.0 | 700.0 | ||
| 3 | 20in Monitor | 2200.0 | 110.0 | 20 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 16770.0 | 390.0 | 43 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 9449.0 | 152.0 | 62 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 17480.0 | 380.0 | 46 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 722.0 | 5.0 | 141 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 502.0 | 5.0 | 109 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 14850.0 | 152.0 | 98 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 10599.0 | 100.0 | 106 | 100.0 | 100.0 | ||
| Flatscreen TV | 8400.0 | 300.0 | 28 | 300.0 | 300.0 | ||
| Google Phone | 27600.0 | 600.0 | 46 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2242.0 | 16.0 | 138 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 52700.0 | 1700.0 | 31 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 19000.0 | 1000.0 | 19 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1876.0 | 13.0 | 139 | 36.0 | 12.0 | ||
| Vareebadd Phone | 7200.0 | 400.0 | 18 | 400.0 | 400.0 | ||
| Wired Headphones | 1487.0 | 13.0 | 114 | 36.0 | 12.0 | ||
| iPhone | 24500.0 | 700.0 | 35 | 700.0 | 700.0 | ||
| 4 | 20in Monitor | 4180.0 | 113.0 | 37 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 16380.0 | 390.0 | 42 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6900.0 | 150.0 | 46 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 16340.0 | 380.0 | 43 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 887.0 | 5.0 | 167 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 574.0 | 4.0 | 136 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 16050.0 | 150.0 | 107 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 10299.0 | 100.0 | 103 | 100.0 | 100.0 | ||
| Flatscreen TV | 10200.0 | 300.0 | 34 | 300.0 | 300.0 | ||
| Google Phone | 21000.0 | 600.0 | 35 | 600.0 | 600.0 | ||
| LG Dryer | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2766.0 | 17.0 | 167 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 54400.0 | 1700.0 | 32 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 31000.0 | 1000.0 | 31 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1876.0 | 13.0 | 143 | 24.0 | 12.0 | ||
| Vareebadd Phone | 7600.0 | 400.0 | 19 | 400.0 | 400.0 | ||
| Wired Headphones | 1810.0 | 13.0 | 135 | 36.0 | 12.0 | ||
| iPhone | 41300.0 | 700.0 | 59 | 700.0 | 700.0 | ||
| 5 | 20in Monitor | 3520.0 | 114.0 | 31 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 15210.0 | 390.0 | 39 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 8249.0 | 150.0 | 55 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 19759.0 | 380.0 | 52 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 764.0 | 5.0 | 162 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 855.0 | 5.0 | 173 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 13050.0 | 150.0 | 87 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 10999.0 | 102.0 | 108 | 200.0 | 100.0 | ||
| Flatscreen TV | 9900.0 | 300.0 | 33 | 300.0 | 300.0 | ||
| Google Phone | 19800.0 | 600.0 | 33 | 600.0 | 600.0 | ||
| LG Dryer | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2826.0 | 16.0 | 178 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 79900.0 | 1700.0 | 47 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 39000.0 | 1000.0 | 39 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2259.0 | 13.0 | 173 | 36.0 | 12.0 | ||
| Vareebadd Phone | 2400.0 | 400.0 | 6 | 400.0 | 400.0 | ||
| Wired Headphones | 1966.0 | 13.0 | 149 | 36.0 | 12.0 | ||
| iPhone | 30800.0 | 700.0 | 44 | 700.0 | 700.0 | ||
| 6 | 20in Monitor | 3740.0 | 110.0 | 34 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 12480.0 | 390.0 | 32 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 5550.0 | 154.0 | 36 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 11400.0 | 380.0 | 30 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 584.0 | 5.0 | 110 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 457.0 | 4.0 | 106 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 16200.0 | 151.0 | 107 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 7299.0 | 100.0 | 73 | 100.0 | 100.0 | ||
| Flatscreen TV | 9300.0 | 300.0 | 31 | 300.0 | 300.0 | ||
| Google Phone | 16800.0 | 600.0 | 28 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2213.0 | 16.0 | 136 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 39100.0 | 1700.0 | 23 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 18000.0 | 1000.0 | 18 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1554.0 | 13.0 | 119 | 36.0 | 12.0 | ||
| Vareebadd Phone | 6000.0 | 400.0 | 15 | 400.0 | 400.0 | ||
| Wired Headphones | 1511.0 | 13.0 | 115 | 24.0 | 12.0 | ||
| iPhone | 32900.0 | 700.0 | 47 | 700.0 | 700.0 | ||
| 7 | 20in Monitor | 2750.0 | 115.0 | 24 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 13260.0 | 390.0 | 34 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6900.0 | 150.0 | 46 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 13680.0 | 380.0 | 36 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 664.0 | 5.0 | 122 | 27.0 | 4.0 | ||
| AAA Batteries (4-pack) | 508.0 | 4.0 | 117 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 13350.0 | 150.0 | 89 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 8199.0 | 100.0 | 82 | 100.0 | 100.0 | ||
| Flatscreen TV | 12000.0 | 308.0 | 39 | 600.0 | 300.0 | ||
| Google Phone | 24000.0 | 600.0 | 40 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2003.0 | 16.0 | 126 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 52700.0 | 1700.0 | 31 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 28000.0 | 1000.0 | 28 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1685.0 | 13.0 | 128 | 24.0 | 12.0 | ||
| Vareebadd Phone | 2400.0 | 400.0 | 6 | 400.0 | 400.0 | ||
| Wired Headphones | 1427.0 | 13.0 | 112 | 24.0 | 12.0 | ||
| iPhone | 25200.0 | 700.0 | 36 | 700.0 | 700.0 | ||
| 8 | 20in Monitor | 2750.0 | 110.0 | 25 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 11700.0 | 390.0 | 30 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6750.0 | 150.0 | 45 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 12540.0 | 380.0 | 33 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 503.0 | 5.0 | 100 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 556.0 | 5.0 | 113 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 12450.0 | 150.0 | 83 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 7099.0 | 101.0 | 70 | 200.0 | 100.0 | ||
| Flatscreen TV | 8400.0 | 300.0 | 28 | 300.0 | 300.0 | ||
| Google Phone | 19200.0 | 600.0 | 32 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1884.0 | 16.0 | 119 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 39100.0 | 1700.0 | 23 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 30000.0 | 1000.0 | 30 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1458.0 | 13.0 | 108 | 24.0 | 12.0 | ||
| Vareebadd Phone | 3200.0 | 400.0 | 8 | 400.0 | 400.0 | ||
| Wired Headphones | 1175.0 | 13.0 | 90 | 36.0 | 12.0 | ||
| iPhone | 16800.0 | 700.0 | 24 | 700.0 | 700.0 | ||
| 9 | 20in Monitor | 2310.0 | 110.0 | 21 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 13260.0 | 402.0 | 33 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 5850.0 | 150.0 | 39 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 13680.0 | 380.0 | 36 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 518.0 | 5.0 | 101 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 484.0 | 4.0 | 115 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 11100.0 | 150.0 | 74 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 6699.0 | 100.0 | 67 | 100.0 | 100.0 | ||
| Flatscreen TV | 7800.0 | 300.0 | 26 | 300.0 | 300.0 | ||
| Google Phone | 20400.0 | 600.0 | 34 | 600.0 | 600.0 | ||
| LG Dryer | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1600.0 | 17.0 | 96 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 32300.0 | 1700.0 | 19 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 17000.0 | 1000.0 | 17 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1518.0 | 13.0 | 116 | 36.0 | 12.0 | ||
| Vareebadd Phone | 5200.0 | 400.0 | 13 | 400.0 | 400.0 | ||
| Wired Headphones | 1295.0 | 14.0 | 93 | 36.0 | 12.0 | ||
| iPhone | 19600.0 | 700.0 | 28 | 700.0 | 700.0 | ||
| Los Angeles(CA) | 1 | 20in Monitor | 3740.0 | 113.0 | 33 | 220.0 | 110.0 |
| 27in 4K Gaming Monitor | 18720.0 | 390.0 | 48 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 11399.0 | 150.0 | 76 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 22039.0 | 380.0 | 58 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 829.0 | 5.0 | 160 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 768.0 | 4.0 | 172 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 17400.0 | 150.0 | 116 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 9699.0 | 101.0 | 96 | 200.0 | 100.0 | ||
| Flatscreen TV | 12300.0 | 300.0 | 41 | 300.0 | 300.0 | ||
| Google Phone | 27000.0 | 614.0 | 44 | 1200.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2736.0 | 17.0 | 165 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 66300.0 | 1700.0 | 39 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 39000.0 | 1000.0 | 39 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2533.0 | 13.0 | 197 | 36.0 | 12.0 | ||
| Vareebadd Phone | 8800.0 | 400.0 | 22 | 400.0 | 400.0 | ||
| Wired Headphones | 2038.0 | 13.0 | 160 | 24.0 | 12.0 | ||
| iPhone | 38500.0 | 700.0 | 55 | 700.0 | 700.0 | ||
| 10 | 20in Monitor | 6709.0 | 110.0 | 61 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 43289.0 | 390.0 | 111 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 18149.0 | 150.0 | 121 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 37239.0 | 380.0 | 98 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1851.0 | 5.0 | 365 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1746.0 | 5.0 | 381 | 24.0 | 3.0 | ||
| Apple Airpods Headphones | 43050.0 | 151.0 | 286 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 25397.0 | 102.0 | 250 | 200.0 | 100.0 | ||
| Flatscreen TV | 22500.0 | 304.0 | 74 | 600.0 | 300.0 | ||
| Google Phone | 55800.0 | 600.0 | 93 | 600.0 | 600.0 | ||
| LG Dryer | 7800.0 | 600.0 | 13 | 600.0 | 600.0 | ||
| LG Washing Machine | 6600.0 | 600.0 | 11 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 6384.0 | 16.0 | 398 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 159800.0 | 1700.0 | 94 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 73999.0 | 1000.0 | 74 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 4864.0 | 14.0 | 359 | 48.0 | 12.0 | ||
| Vareebadd Phone | 10000.0 | 400.0 | 25 | 400.0 | 400.0 | ||
| Wired Headphones | 4676.0 | 13.0 | 364 | 36.0 | 12.0 | ||
| iPhone | 82600.0 | 700.0 | 118 | 700.0 | 700.0 | ||
| 11 | 20in Monitor | 6049.0 | 110.0 | 55 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 36659.0 | 390.0 | 94 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 18449.0 | 152.0 | 121 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 33059.0 | 380.0 | 87 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1674.0 | 5.0 | 319 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1423.0 | 5.0 | 310 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 36000.0 | 151.0 | 238 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 18698.0 | 102.0 | 183 | 200.0 | 100.0 | ||
| Flatscreen TV | 19200.0 | 305.0 | 63 | 600.0 | 300.0 | ||
| Google Phone | 49200.0 | 600.0 | 82 | 600.0 | 600.0 | ||
| LG Dryer | 6600.0 | 600.0 | 11 | 600.0 | 600.0 | ||
| LG Washing Machine | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 5247.0 | 16.0 | 321 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 110500.0 | 1700.0 | 65 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 57999.0 | 1000.0 | 58 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 4075.0 | 13.0 | 308 | 48.0 | 12.0 | ||
| Vareebadd Phone | 12800.0 | 400.0 | 32 | 400.0 | 400.0 | ||
| Wired Headphones | 3657.0 | 13.0 | 286 | 36.0 | 12.0 | ||
| iPhone | 74200.0 | 700.0 | 106 | 700.0 | 700.0 | ||
| 12 | 20in Monitor | 10999.0 | 110.0 | 100 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 54989.0 | 390.0 | 141 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 21749.0 | 151.0 | 144 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 51679.0 | 383.0 | 135 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 2350.0 | 5.0 | 445 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1809.0 | 4.0 | 407 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 50400.0 | 151.0 | 334 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 29797.0 | 102.0 | 293 | 200.0 | 100.0 | ||
| Flatscreen TV | 29100.0 | 303.0 | 96 | 600.0 | 300.0 | ||
| Google Phone | 53400.0 | 607.0 | 88 | 1200.0 | 600.0 | ||
| LG Dryer | 8400.0 | 600.0 | 14 | 600.0 | 600.0 | ||
| LG Washing Machine | 4800.0 | 600.0 | 8 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 7460.0 | 16.0 | 463 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 141100.0 | 1700.0 | 83 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 78999.0 | 1000.0 | 79 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 5939.0 | 13.0 | 460 | 36.0 | 12.0 | ||
| Vareebadd Phone | 18000.0 | 400.0 | 45 | 400.0 | 400.0 | ||
| Wired Headphones | 5276.0 | 13.0 | 410 | 36.0 | 12.0 | ||
| iPhone | 107800.0 | 700.0 | 154 | 700.0 | 700.0 | ||
| 2 | 20in Monitor | 4840.0 | 110.0 | 44 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 27299.0 | 390.0 | 70 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 12149.0 | 152.0 | 80 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 23939.0 | 380.0 | 63 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1125.0 | 5.0 | 219 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1049.0 | 4.0 | 234 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 21000.0 | 150.0 | 140 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 12999.0 | 102.0 | 128 | 200.0 | 100.0 | ||
| Flatscreen TV | 10800.0 | 300.0 | 36 | 300.0 | 300.0 | ||
| Google Phone | 31200.0 | 612.0 | 51 | 1200.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3633.0 | 16.0 | 222 | 60.0 | 15.0 | ||
| Macbook Pro Laptop | 78200.0 | 1700.0 | 46 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 42000.0 | 1000.0 | 42 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3250.0 | 14.0 | 240 | 36.0 | 12.0 | ||
| Vareebadd Phone | 10000.0 | 400.0 | 25 | 400.0 | 400.0 | ||
| Wired Headphones | 2278.0 | 13.0 | 178 | 24.0 | 12.0 | ||
| iPhone | 49700.0 | 700.0 | 71 | 700.0 | 700.0 | ||
| 3 | 20in Monitor | 6269.0 | 112.0 | 56 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 27689.0 | 390.0 | 71 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 13949.0 | 150.0 | 93 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 29639.0 | 380.0 | 78 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1409.0 | 5.0 | 280 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1325.0 | 5.0 | 290 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 29400.0 | 152.0 | 194 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 17498.0 | 101.0 | 173 | 200.0 | 100.0 | ||
| Flatscreen TV | 15000.0 | 300.0 | 50 | 300.0 | 300.0 | ||
| Google Phone | 45600.0 | 600.0 | 76 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 6600.0 | 600.0 | 11 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 4649.0 | 16.0 | 293 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 108800.0 | 1700.0 | 64 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 49000.0 | 1000.0 | 49 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3764.0 | 13.0 | 294 | 36.0 | 12.0 | ||
| Vareebadd Phone | 8800.0 | 400.0 | 22 | 400.0 | 400.0 | ||
| Wired Headphones | 3537.0 | 13.0 | 280 | 24.0 | 12.0 | ||
| iPhone | 54600.0 | 700.0 | 78 | 700.0 | 700.0 | ||
| 4 | 20in Monitor | 7149.0 | 112.0 | 64 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 35879.0 | 390.0 | 92 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 17249.0 | 150.0 | 115 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 36859.0 | 380.0 | 97 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1782.0 | 5.0 | 335 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1534.0 | 4.0 | 347 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 38700.0 | 152.0 | 254 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 20498.0 | 100.0 | 204 | 200.0 | 100.0 | ||
| Flatscreen TV | 20700.0 | 300.0 | 69 | 300.0 | 300.0 | ||
| Google Phone | 66000.0 | 600.0 | 110 | 600.0 | 600.0 | ||
| LG Dryer | 10200.0 | 600.0 | 17 | 600.0 | 600.0 | ||
| LG Washing Machine | 9000.0 | 600.0 | 15 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 5965.0 | 16.0 | 380 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 117300.0 | 1700.0 | 69 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 65999.0 | 1000.0 | 66 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 4541.0 | 13.0 | 351 | 36.0 | 12.0 | ||
| Vareebadd Phone | 12800.0 | 400.0 | 32 | 400.0 | 400.0 | ||
| Wired Headphones | 3909.0 | 13.0 | 303 | 36.0 | 12.0 | ||
| iPhone | 74200.0 | 707.0 | 105 | 1400.0 | 700.0 | ||
| 5 | 20in Monitor | 6709.0 | 112.0 | 60 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 34709.0 | 390.0 | 89 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 14999.0 | 150.0 | 100 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 27739.0 | 380.0 | 73 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1298.0 | 5.0 | 262 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1340.0 | 5.0 | 290 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 32550.0 | 152.0 | 214 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 19898.0 | 101.0 | 197 | 200.0 | 100.0 | ||
| Flatscreen TV | 22800.0 | 300.0 | 76 | 300.0 | 300.0 | ||
| Google Phone | 42000.0 | 600.0 | 70 | 600.0 | 600.0 | ||
| LG Dryer | 9600.0 | 600.0 | 16 | 600.0 | 600.0 | ||
| LG Washing Machine | 6600.0 | 600.0 | 11 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 4874.0 | 17.0 | 295 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 120700.0 | 1700.0 | 71 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 51999.0 | 1000.0 | 52 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3669.0 | 13.0 | 277 | 36.0 | 12.0 | ||
| Vareebadd Phone | 10800.0 | 400.0 | 27 | 400.0 | 400.0 | ||
| Wired Headphones | 3405.0 | 13.0 | 268 | 36.0 | 12.0 | ||
| iPhone | 84000.0 | 700.0 | 120 | 700.0 | 700.0 | ||
| 6 | 20in Monitor | 5500.0 | 110.0 | 50 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 31979.0 | 390.0 | 82 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 14699.0 | 153.0 | 96 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 28879.0 | 385.0 | 75 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 1302.0 | 5.0 | 247 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 948.0 | 4.0 | 224 | 27.0 | 3.0 | ||
| Apple Airpods Headphones | 27750.0 | 150.0 | 185 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 14499.0 | 101.0 | 144 | 200.0 | 100.0 | ||
| Flatscreen TV | 17100.0 | 300.0 | 57 | 300.0 | 300.0 | ||
| Google Phone | 34200.0 | 600.0 | 57 | 600.0 | 600.0 | ||
| LG Dryer | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Washing Machine | 6600.0 | 600.0 | 11 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3842.0 | 16.0 | 240 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 120700.0 | 1700.0 | 71 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 49000.0 | 1000.0 | 49 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3466.0 | 13.0 | 268 | 36.0 | 12.0 | ||
| Vareebadd Phone | 9200.0 | 400.0 | 23 | 400.0 | 400.0 | ||
| Wired Headphones | 2770.0 | 13.0 | 210 | 48.0 | 12.0 | ||
| iPhone | 74900.0 | 700.0 | 107 | 700.0 | 700.0 | ||
| 7 | 20in Monitor | 4510.0 | 110.0 | 41 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 28079.0 | 390.0 | 72 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 16199.0 | 150.0 | 108 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 23559.0 | 380.0 | 62 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1229.0 | 5.0 | 241 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1094.0 | 5.0 | 237 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 29250.0 | 152.0 | 192 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 16598.0 | 102.0 | 163 | 300.0 | 100.0 | ||
| Flatscreen TV | 18900.0 | 300.0 | 63 | 300.0 | 300.0 | ||
| Google Phone | 35400.0 | 600.0 | 59 | 600.0 | 600.0 | ||
| LG Dryer | 9000.0 | 600.0 | 15 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 4186.0 | 16.0 | 270 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 86700.0 | 1700.0 | 51 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 50999.0 | 1000.0 | 51 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3573.0 | 13.0 | 272 | 36.0 | 12.0 | ||
| Vareebadd Phone | 8000.0 | 400.0 | 20 | 400.0 | 400.0 | ||
| Wired Headphones | 3057.0 | 13.0 | 235 | 36.0 | 12.0 | ||
| iPhone | 50400.0 | 700.0 | 72 | 700.0 | 700.0 | ||
| 8 | 20in Monitor | 4400.0 | 110.0 | 40 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 26129.0 | 390.0 | 67 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 11849.0 | 150.0 | 79 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 21279.0 | 380.0 | 56 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1068.0 | 5.0 | 206 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 894.0 | 4.0 | 216 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 25050.0 | 153.0 | 164 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 13299.0 | 100.0 | 133 | 100.0 | 100.0 | ||
| Flatscreen TV | 14700.0 | 300.0 | 49 | 300.0 | 300.0 | ||
| Google Phone | 35400.0 | 600.0 | 59 | 600.0 | 600.0 | ||
| LG Dryer | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| LG Washing Machine | 5400.0 | 600.0 | 9 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3827.0 | 16.0 | 238 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 79900.0 | 1700.0 | 47 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 35000.0 | 1000.0 | 35 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2725.0 | 13.0 | 213 | 36.0 | 12.0 | ||
| Vareebadd Phone | 9600.0 | 400.0 | 24 | 400.0 | 400.0 | ||
| Wired Headphones | 2074.0 | 13.0 | 159 | 36.0 | 12.0 | ||
| iPhone | 49700.0 | 700.0 | 71 | 700.0 | 700.0 | ||
| 9 | 20in Monitor | 5500.0 | 110.0 | 50 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 25739.0 | 390.0 | 66 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 12599.0 | 150.0 | 84 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 26979.0 | 380.0 | 71 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1125.0 | 5.0 | 210 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 921.0 | 4.0 | 205 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 20400.0 | 151.0 | 135 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 13599.0 | 101.0 | 135 | 200.0 | 100.0 | ||
| Flatscreen TV | 15000.0 | 300.0 | 50 | 300.0 | 300.0 | ||
| Google Phone | 33600.0 | 600.0 | 56 | 600.0 | 600.0 | ||
| LG Dryer | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| LG Washing Machine | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3588.0 | 16.0 | 227 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 86700.0 | 1700.0 | 51 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 47000.0 | 1000.0 | 47 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2796.0 | 13.0 | 215 | 24.0 | 12.0 | ||
| Vareebadd Phone | 8000.0 | 400.0 | 20 | 400.0 | 400.0 | ||
| Wired Headphones | 2530.0 | 13.0 | 190 | 36.0 | 12.0 | ||
| iPhone | 42000.0 | 700.0 | 60 | 700.0 | 700.0 | ||
| New York City(NY) | 1 | 20in Monitor | 3190.0 | 110.0 | 29 | 110.0 | 110.0 |
| 27in 4K Gaming Monitor | 14430.0 | 390.0 | 37 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 8549.0 | 150.0 | 57 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 15200.0 | 380.0 | 40 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 657.0 | 6.0 | 119 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 765.0 | 5.0 | 156 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 16050.0 | 151.0 | 106 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 7299.0 | 101.0 | 72 | 200.0 | 100.0 | ||
| Flatscreen TV | 8400.0 | 300.0 | 28 | 300.0 | 300.0 | ||
| Google Phone | 25800.0 | 600.0 | 43 | 600.0 | 600.0 | ||
| LG Dryer | 4800.0 | 600.0 | 8 | 600.0 | 600.0 | ||
| LG Washing Machine | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2751.0 | 16.0 | 176 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 71400.0 | 1700.0 | 42 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 25000.0 | 1042.0 | 24 | 2000.0 | 1000.0 | ||
| USB-C Charging Cable | 2306.0 | 14.0 | 168 | 36.0 | 12.0 | ||
| Vareebadd Phone | 10400.0 | 416.0 | 25 | 800.0 | 400.0 | ||
| Wired Headphones | 1595.0 | 13.0 | 122 | 48.0 | 12.0 | ||
| iPhone | 37800.0 | 700.0 | 54 | 700.0 | 700.0 | ||
| 10 | 20in Monitor | 6929.0 | 110.0 | 63 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 32759.0 | 390.0 | 84 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 17549.0 | 150.0 | 117 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 41039.0 | 380.0 | 108 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1567.0 | 5.0 | 314 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1357.0 | 5.0 | 299 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 31350.0 | 150.0 | 209 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 17198.0 | 101.0 | 171 | 200.0 | 100.0 | ||
| Flatscreen TV | 22200.0 | 300.0 | 74 | 300.0 | 300.0 | ||
| Google Phone | 46200.0 | 600.0 | 77 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 4575.0 | 16.0 | 290 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 120700.0 | 1700.0 | 71 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 53999.0 | 1000.0 | 54 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 4266.0 | 13.0 | 336 | 36.0 | 12.0 | ||
| Vareebadd Phone | 13600.0 | 400.0 | 34 | 400.0 | 400.0 | ||
| Wired Headphones | 3165.0 | 13.0 | 247 | 36.0 | 12.0 | ||
| iPhone | 63700.0 | 700.0 | 91 | 700.0 | 700.0 | ||
| 11 | 20in Monitor | 6049.0 | 112.0 | 54 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 26909.0 | 390.0 | 69 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 13799.0 | 152.0 | 91 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 33439.0 | 380.0 | 88 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1279.0 | 5.0 | 246 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1211.0 | 5.0 | 268 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 33300.0 | 152.0 | 219 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 17398.0 | 101.0 | 172 | 200.0 | 100.0 | ||
| Flatscreen TV | 17400.0 | 300.0 | 58 | 300.0 | 300.0 | ||
| Google Phone | 42000.0 | 600.0 | 70 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 4530.0 | 16.0 | 289 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 96900.0 | 1700.0 | 57 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 56999.0 | 1000.0 | 57 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3669.0 | 13.0 | 277 | 36.0 | 12.0 | ||
| Vareebadd Phone | 8400.0 | 400.0 | 21 | 400.0 | 400.0 | ||
| Wired Headphones | 2998.0 | 13.0 | 229 | 36.0 | 12.0 | ||
| iPhone | 55300.0 | 700.0 | 79 | 700.0 | 700.0 | ||
| 12 | 20in Monitor | 6379.0 | 110.0 | 58 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 46799.0 | 390.0 | 120 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 20399.0 | 150.0 | 136 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 43699.0 | 380.0 | 115 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1924.0 | 5.0 | 357 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1650.0 | 4.0 | 383 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 44400.0 | 152.0 | 292 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 24598.0 | 101.0 | 243 | 200.0 | 100.0 | ||
| Flatscreen TV | 26400.0 | 300.0 | 88 | 300.0 | 300.0 | ||
| Google Phone | 53400.0 | 600.0 | 89 | 600.0 | 600.0 | ||
| LG Dryer | 7800.0 | 600.0 | 13 | 600.0 | 600.0 | ||
| LG Washing Machine | 5400.0 | 600.0 | 9 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 6070.0 | 16.0 | 381 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 156400.0 | 1700.0 | 92 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 79999.0 | 1000.0 | 80 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 5150.0 | 13.0 | 397 | 36.0 | 12.0 | ||
| Vareebadd Phone | 14800.0 | 400.0 | 37 | 400.0 | 400.0 | ||
| Wired Headphones | 4904.0 | 13.0 | 374 | 36.0 | 12.0 | ||
| iPhone | 96600.0 | 700.0 | 138 | 700.0 | 700.0 | ||
| 2 | 20in Monitor | 4510.0 | 110.0 | 41 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 23009.0 | 397.0 | 58 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 11399.0 | 152.0 | 75 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 21279.0 | 380.0 | 56 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 883.0 | 5.0 | 165 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 703.0 | 5.0 | 154 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 18300.0 | 151.0 | 121 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 11499.0 | 103.0 | 112 | 200.0 | 100.0 | ||
| Flatscreen TV | 14400.0 | 306.0 | 47 | 600.0 | 300.0 | ||
| Google Phone | 32400.0 | 600.0 | 54 | 600.0 | 600.0 | ||
| LG Dryer | 4800.0 | 600.0 | 8 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2900.0 | 16.0 | 184 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 73100.0 | 1700.0 | 43 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 41000.0 | 1000.0 | 41 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2940.0 | 13.0 | 226 | 36.0 | 12.0 | ||
| Vareebadd Phone | 7200.0 | 400.0 | 18 | 400.0 | 400.0 | ||
| Wired Headphones | 2050.0 | 13.0 | 158 | 36.0 | 12.0 | ||
| iPhone | 29400.0 | 700.0 | 42 | 700.0 | 700.0 | ||
| 3 | 20in Monitor | 4510.0 | 110.0 | 41 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 24959.0 | 390.0 | 64 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 14399.0 | 150.0 | 96 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 22419.0 | 380.0 | 59 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 998.0 | 5.0 | 197 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 966.0 | 4.0 | 221 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 27300.0 | 153.0 | 179 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 16198.0 | 102.0 | 159 | 200.0 | 100.0 | ||
| Flatscreen TV | 15300.0 | 300.0 | 51 | 300.0 | 300.0 | ||
| Google Phone | 41400.0 | 600.0 | 69 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3708.0 | 16.0 | 227 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 74800.0 | 1700.0 | 44 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 50999.0 | 1000.0 | 51 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3059.0 | 13.0 | 229 | 48.0 | 12.0 | ||
| Vareebadd Phone | 7600.0 | 400.0 | 19 | 400.0 | 400.0 | ||
| Wired Headphones | 2446.0 | 13.0 | 189 | 36.0 | 12.0 | ||
| iPhone | 49000.0 | 700.0 | 70 | 700.0 | 700.0 | ||
| 4 | 20in Monitor | 7149.0 | 113.0 | 63 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 30419.0 | 390.0 | 78 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 13199.0 | 150.0 | 88 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 34959.0 | 380.0 | 92 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1505.0 | 6.0 | 273 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1130.0 | 4.0 | 271 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 30450.0 | 151.0 | 202 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 19298.0 | 102.0 | 189 | 200.0 | 100.0 | ||
| Flatscreen TV | 18900.0 | 300.0 | 63 | 300.0 | 300.0 | ||
| Google Phone | 42600.0 | 600.0 | 71 | 600.0 | 600.0 | ||
| LG Dryer | 5400.0 | 600.0 | 9 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 4560.0 | 16.0 | 280 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 117300.0 | 1725.0 | 68 | 3400.0 | 1700.0 | ||
| ThinkPad Laptop | 50999.0 | 1000.0 | 51 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3585.0 | 13.0 | 275 | 48.0 | 12.0 | ||
| Vareebadd Phone | 12000.0 | 400.0 | 30 | 400.0 | 400.0 | ||
| Wired Headphones | 3393.0 | 13.0 | 260 | 36.0 | 12.0 | ||
| iPhone | 49000.0 | 700.0 | 70 | 700.0 | 700.0 | ||
| 5 | 20in Monitor | 4840.0 | 113.0 | 43 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 33929.0 | 390.0 | 87 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 17999.0 | 151.0 | 119 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 28119.0 | 385.0 | 73 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 1129.0 | 5.0 | 226 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1268.0 | 5.0 | 273 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 27300.0 | 153.0 | 179 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 16998.0 | 101.0 | 169 | 200.0 | 100.0 | ||
| Flatscreen TV | 14100.0 | 300.0 | 47 | 300.0 | 300.0 | ||
| Google Phone | 48000.0 | 600.0 | 80 | 600.0 | 600.0 | ||
| LG Dryer | 5400.0 | 600.0 | 9 | 600.0 | 600.0 | ||
| LG Washing Machine | 4800.0 | 600.0 | 8 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3738.0 | 16.0 | 236 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 113900.0 | 1700.0 | 67 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 43000.0 | 1000.0 | 43 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3262.0 | 13.0 | 249 | 48.0 | 12.0 | ||
| Vareebadd Phone | 10400.0 | 400.0 | 26 | 400.0 | 400.0 | ||
| Wired Headphones | 3345.0 | 13.0 | 255 | 36.0 | 12.0 | ||
| iPhone | 54600.0 | 700.0 | 78 | 700.0 | 700.0 | ||
| 6 | 20in Monitor | 5060.0 | 110.0 | 46 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 27299.0 | 390.0 | 70 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 8699.0 | 150.0 | 58 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 26979.0 | 380.0 | 71 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1156.0 | 5.0 | 213 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 840.0 | 4.0 | 203 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 24750.0 | 152.0 | 163 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 12799.0 | 101.0 | 127 | 200.0 | 100.0 | ||
| Flatscreen TV | 12600.0 | 300.0 | 42 | 300.0 | 300.0 | ||
| Google Phone | 24000.0 | 600.0 | 40 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3543.0 | 16.0 | 218 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 66300.0 | 1700.0 | 39 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 41000.0 | 1000.0 | 41 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2593.0 | 13.0 | 197 | 36.0 | 12.0 | ||
| Vareebadd Phone | 8000.0 | 400.0 | 20 | 400.0 | 400.0 | ||
| Wired Headphones | 1930.0 | 13.0 | 145 | 36.0 | 12.0 | ||
| iPhone | 51800.0 | 700.0 | 74 | 700.0 | 700.0 | ||
| 7 | 20in Monitor | 4290.0 | 110.0 | 39 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 28859.0 | 390.0 | 74 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 12899.0 | 150.0 | 86 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 28499.0 | 385.0 | 74 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 1079.0 | 5.0 | 207 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 954.0 | 4.0 | 215 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 20250.0 | 150.0 | 135 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 15898.0 | 101.0 | 158 | 200.0 | 100.0 | ||
| Flatscreen TV | 16800.0 | 311.0 | 54 | 600.0 | 300.0 | ||
| Google Phone | 38400.0 | 600.0 | 64 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 6000.0 | 600.0 | 10 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3304.0 | 16.0 | 210 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 69700.0 | 1700.0 | 41 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 50000.0 | 1000.0 | 50 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3322.0 | 14.0 | 246 | 36.0 | 12.0 | ||
| Vareebadd Phone | 6000.0 | 400.0 | 15 | 400.0 | 400.0 | ||
| Wired Headphones | 2362.0 | 13.0 | 184 | 36.0 | 12.0 | ||
| iPhone | 44100.0 | 700.0 | 63 | 700.0 | 700.0 | ||
| 8 | 20in Monitor | 4510.0 | 110.0 | 41 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 20279.0 | 398.0 | 51 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 10199.0 | 150.0 | 68 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 18620.0 | 380.0 | 49 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 937.0 | 5.0 | 192 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 759.0 | 5.0 | 165 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 20100.0 | 151.0 | 133 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 11299.0 | 102.0 | 111 | 200.0 | 100.0 | ||
| Flatscreen TV | 13800.0 | 300.0 | 46 | 300.0 | 300.0 | ||
| Google Phone | 32400.0 | 600.0 | 54 | 600.0 | 600.0 | ||
| LG Dryer | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2781.0 | 15.0 | 180 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 73100.0 | 1700.0 | 43 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 30000.0 | 1000.0 | 30 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2426.0 | 13.0 | 188 | 36.0 | 12.0 | ||
| Vareebadd Phone | 6800.0 | 425.0 | 16 | 800.0 | 400.0 | ||
| Wired Headphones | 2374.0 | 13.0 | 185 | 36.0 | 12.0 | ||
| iPhone | 46200.0 | 700.0 | 66 | 700.0 | 700.0 | ||
| 9 | 20in Monitor | 4180.0 | 113.0 | 37 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 18720.0 | 390.0 | 48 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 11699.0 | 150.0 | 78 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 15580.0 | 389.0 | 40 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 826.0 | 5.0 | 166 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 727.0 | 4.0 | 165 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 21150.0 | 150.0 | 141 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 8899.0 | 101.0 | 88 | 200.0 | 100.0 | ||
| Flatscreen TV | 8100.0 | 300.0 | 27 | 300.0 | 300.0 | ||
| Google Phone | 28200.0 | 600.0 | 47 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 6000.0 | 600.0 | 10 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3005.0 | 16.0 | 190 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 83300.0 | 1700.0 | 49 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 37000.0 | 1000.0 | 37 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2486.0 | 13.0 | 190 | 36.0 | 12.0 | ||
| Vareebadd Phone | 7200.0 | 400.0 | 18 | 400.0 | 400.0 | ||
| Wired Headphones | 1894.0 | 13.0 | 142 | 24.0 | 12.0 | ||
| iPhone | 39200.0 | 700.0 | 56 | 700.0 | 700.0 | ||
| Portland(ME) | 1 | 20in Monitor | 220.0 | 110.0 | 2 | 110.0 | 110.0 |
| 27in 4K Gaming Monitor | 1950.0 | 390.0 | 5 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 300.0 | 150.0 | 2 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 1520.0 | 380.0 | 4 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 104.0 | 5.0 | 21 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 57.0 | 4.0 | 13 | 9.0 | 3.0 | ||
| Apple Airpods Headphones | 1950.0 | 150.0 | 13 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 700.0 | 100.0 | 7 | 100.0 | 100.0 | ||
| Flatscreen TV | 1800.0 | 300.0 | 6 | 300.0 | 300.0 | ||
| Google Phone | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Dryer | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 209.0 | 16.0 | 13 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 6800.0 | 1700.0 | 4 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 2000.0 | 1000.0 | 2 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 155.0 | 13.0 | 12 | 24.0 | 12.0 | ||
| Vareebadd Phone | 400.0 | 400.0 | 1 | 400.0 | 400.0 | ||
| Wired Headphones | 144.0 | 13.0 | 11 | 24.0 | 12.0 | ||
| iPhone | 1400.0 | 700.0 | 2 | 700.0 | 700.0 | ||
| 10 | 20in Monitor | 550.0 | 110.0 | 5 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 3120.0 | 390.0 | 8 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 1650.0 | 150.0 | 11 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 3800.0 | 380.0 | 10 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 146.0 | 5.0 | 30 | 8.0 | 4.0 | ||
| AAA Batteries (4-pack) | 81.0 | 5.0 | 17 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 4050.0 | 156.0 | 26 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 2300.0 | 110.0 | 21 | 200.0 | 100.0 | ||
| Flatscreen TV | 900.0 | 300.0 | 3 | 300.0 | 300.0 | ||
| Google Phone | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 448.0 | 15.0 | 29 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 15300.0 | 1700.0 | 9 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 9000.0 | 1000.0 | 9 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 394.0 | 14.0 | 28 | 24.0 | 12.0 | ||
| Vareebadd Phone | 400.0 | 400.0 | 1 | 400.0 | 400.0 | ||
| Wired Headphones | 384.0 | 13.0 | 29 | 24.0 | 12.0 | ||
| iPhone | 5600.0 | 700.0 | 8 | 700.0 | 700.0 | ||
| 11 | 20in Monitor | 660.0 | 110.0 | 6 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 3510.0 | 390.0 | 9 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 1650.0 | 150.0 | 11 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 4180.0 | 380.0 | 11 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 142.0 | 5.0 | 27 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 96.0 | 4.0 | 22 | 9.0 | 3.0 | ||
| Apple Airpods Headphones | 3300.0 | 150.0 | 22 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 2200.0 | 100.0 | 22 | 100.0 | 100.0 | ||
| Flatscreen TV | 2700.0 | 300.0 | 9 | 300.0 | 300.0 | ||
| Google Phone | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 374.0 | 16.0 | 24 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 3400.0 | 1700.0 | 2 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 2000.0 | 1000.0 | 2 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 335.0 | 13.0 | 26 | 24.0 | 12.0 | ||
| Wired Headphones | 336.0 | 15.0 | 22 | 36.0 | 12.0 | ||
| iPhone | 5600.0 | 700.0 | 8 | 700.0 | 700.0 | ||
| 12 | 20in Monitor | 1210.0 | 110.0 | 11 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 3510.0 | 390.0 | 9 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 2400.0 | 150.0 | 16 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 3040.0 | 380.0 | 8 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 169.0 | 5.0 | 34 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 179.0 | 4.0 | 41 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 3900.0 | 150.0 | 26 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 1600.0 | 100.0 | 16 | 100.0 | 100.0 | ||
| Flatscreen TV | 2100.0 | 300.0 | 7 | 300.0 | 300.0 | ||
| Google Phone | 5400.0 | 600.0 | 9 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 493.0 | 16.0 | 31 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 15300.0 | 1700.0 | 9 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 7000.0 | 1000.0 | 7 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 621.0 | 13.0 | 47 | 36.0 | 12.0 | ||
| Vareebadd Phone | 1200.0 | 400.0 | 3 | 400.0 | 400.0 | ||
| Wired Headphones | 444.0 | 12.0 | 36 | 24.0 | 12.0 | ||
| iPhone | 2800.0 | 700.0 | 4 | 700.0 | 700.0 | ||
| 2 | 20in Monitor | 330.0 | 110.0 | 3 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 3120.0 | 390.0 | 8 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 600.0 | 150.0 | 4 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 1140.0 | 380.0 | 3 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 65.0 | 5.0 | 12 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 123.0 | 6.0 | 20 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 2250.0 | 150.0 | 15 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 1900.0 | 100.0 | 19 | 100.0 | 100.0 | ||
| Flatscreen TV | 900.0 | 300.0 | 3 | 300.0 | 300.0 | ||
| Google Phone | 4800.0 | 600.0 | 8 | 600.0 | 600.0 | ||
| LG Dryer | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 344.0 | 16.0 | 22 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 5100.0 | 1700.0 | 3 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 2000.0 | 1000.0 | 2 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 406.0 | 13.0 | 32 | 24.0 | 12.0 | ||
| Vareebadd Phone | 1200.0 | 400.0 | 3 | 400.0 | 400.0 | ||
| Wired Headphones | 168.0 | 14.0 | 12 | 24.0 | 12.0 | ||
| iPhone | 4200.0 | 700.0 | 6 | 700.0 | 700.0 | ||
| 3 | 20in Monitor | 990.0 | 110.0 | 9 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 390.0 | 390.0 | 1 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 1500.0 | 150.0 | 10 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 1900.0 | 380.0 | 5 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 173.0 | 5.0 | 35 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 96.0 | 5.0 | 19 | 9.0 | 3.0 | ||
| Apple Airpods Headphones | 2550.0 | 159.0 | 16 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 1500.0 | 100.0 | 15 | 100.0 | 100.0 | ||
| Flatscreen TV | 600.0 | 300.0 | 2 | 300.0 | 300.0 | ||
| Google Phone | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Dryer | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 179.0 | 15.0 | 12 | 15.0 | 15.0 | ||
| Macbook Pro Laptop | 10200.0 | 1700.0 | 6 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 2000.0 | 1000.0 | 2 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 215.0 | 13.0 | 17 | 24.0 | 12.0 | ||
| Vareebadd Phone | 800.0 | 400.0 | 2 | 400.0 | 400.0 | ||
| Wired Headphones | 324.0 | 12.0 | 26 | 24.0 | 12.0 | ||
| iPhone | 3500.0 | 700.0 | 5 | 700.0 | 700.0 | ||
| 4 | 20in Monitor | 660.0 | 110.0 | 6 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 2340.0 | 390.0 | 6 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 2100.0 | 150.0 | 14 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 2660.0 | 380.0 | 7 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 119.0 | 4.0 | 29 | 8.0 | 4.0 | ||
| AAA Batteries (4-pack) | 78.0 | 5.0 | 17 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 3300.0 | 150.0 | 22 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 1700.0 | 100.0 | 17 | 100.0 | 100.0 | ||
| Flatscreen TV | 600.0 | 300.0 | 2 | 300.0 | 300.0 | ||
| Google Phone | 6000.0 | 600.0 | 10 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 299.0 | 15.0 | 20 | 15.0 | 15.0 | ||
| Macbook Pro Laptop | 10200.0 | 1700.0 | 6 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 5000.0 | 1000.0 | 5 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 574.0 | 14.0 | 41 | 24.0 | 12.0 | ||
| Vareebadd Phone | 1600.0 | 400.0 | 4 | 400.0 | 400.0 | ||
| Wired Headphones | 408.0 | 14.0 | 30 | 36.0 | 12.0 | ||
| iPhone | 4900.0 | 700.0 | 7 | 700.0 | 700.0 | ||
| 5 | 20in Monitor | 550.0 | 110.0 | 5 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 3510.0 | 390.0 | 9 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 1800.0 | 150.0 | 12 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 3420.0 | 380.0 | 9 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 123.0 | 6.0 | 22 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 60.0 | 4.0 | 16 | 6.0 | 3.0 | ||
| Apple Airpods Headphones | 3300.0 | 150.0 | 22 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 1300.0 | 100.0 | 13 | 100.0 | 100.0 | ||
| Flatscreen TV | 3300.0 | 300.0 | 11 | 300.0 | 300.0 | ||
| Google Phone | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 254.0 | 15.0 | 17 | 15.0 | 15.0 | ||
| Macbook Pro Laptop | 13600.0 | 1700.0 | 8 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 8000.0 | 1000.0 | 8 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 311.0 | 12.0 | 25 | 24.0 | 12.0 | ||
| Vareebadd Phone | 400.0 | 400.0 | 1 | 400.0 | 400.0 | ||
| Wired Headphones | 252.0 | 15.0 | 17 | 24.0 | 12.0 | ||
| iPhone | 11200.0 | 700.0 | 16 | 700.0 | 700.0 | ||
| 6 | 20in Monitor | 330.0 | 110.0 | 3 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 2730.0 | 390.0 | 7 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 1050.0 | 150.0 | 7 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 1900.0 | 380.0 | 5 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 142.0 | 6.0 | 25 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 123.0 | 5.0 | 25 | 9.0 | 3.0 | ||
| Apple Airpods Headphones | 2100.0 | 150.0 | 14 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 2000.0 | 100.0 | 20 | 100.0 | 100.0 | ||
| Flatscreen TV | 1500.0 | 300.0 | 5 | 300.0 | 300.0 | ||
| Google Phone | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Dryer | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 448.0 | 17.0 | 27 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 5100.0 | 1700.0 | 3 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 4000.0 | 1000.0 | 4 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 287.0 | 12.0 | 24 | 12.0 | 12.0 | ||
| Vareebadd Phone | 400.0 | 400.0 | 1 | 400.0 | 400.0 | ||
| Wired Headphones | 216.0 | 14.0 | 15 | 24.0 | 12.0 | ||
| iPhone | 3500.0 | 700.0 | 5 | 700.0 | 700.0 | ||
| 7 | 20in Monitor | 440.0 | 110.0 | 4 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 3510.0 | 390.0 | 9 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 1200.0 | 150.0 | 8 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 3800.0 | 380.0 | 10 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 81.0 | 5.0 | 16 | 8.0 | 4.0 | ||
| AAA Batteries (4-pack) | 102.0 | 4.0 | 25 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 3750.0 | 163.0 | 23 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 1100.0 | 100.0 | 11 | 100.0 | 100.0 | ||
| Flatscreen TV | 1500.0 | 300.0 | 5 | 300.0 | 300.0 | ||
| Google Phone | 5400.0 | 600.0 | 9 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 448.0 | 16.0 | 28 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 3400.0 | 1700.0 | 2 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 3000.0 | 1000.0 | 3 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 239.0 | 13.0 | 18 | 24.0 | 12.0 | ||
| Wired Headphones | 252.0 | 12.0 | 21 | 12.0 | 12.0 | ||
| iPhone | 4200.0 | 700.0 | 6 | 700.0 | 700.0 | ||
| 8 | 20in Monitor | 330.0 | 110.0 | 3 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 3120.0 | 390.0 | 8 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 1800.0 | 150.0 | 12 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 1140.0 | 380.0 | 3 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 111.0 | 6.0 | 19 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 27.0 | 3.0 | 8 | 6.0 | 3.0 | ||
| Apple Airpods Headphones | 2400.0 | 160.0 | 15 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 1000.0 | 100.0 | 10 | 100.0 | 100.0 | ||
| Flatscreen TV | 1800.0 | 300.0 | 6 | 300.0 | 300.0 | ||
| Google Phone | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 254.0 | 16.0 | 16 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 6800.0 | 1700.0 | 4 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 7000.0 | 1000.0 | 7 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 287.0 | 12.0 | 23 | 24.0 | 12.0 | ||
| Vareebadd Phone | 400.0 | 400.0 | 1 | 400.0 | 400.0 | ||
| Wired Headphones | 228.0 | 13.0 | 17 | 24.0 | 12.0 | ||
| iPhone | 6300.0 | 700.0 | 9 | 700.0 | 700.0 | ||
| 9 | 20in Monitor | 220.0 | 110.0 | 2 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 2340.0 | 390.0 | 6 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 1050.0 | 150.0 | 7 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 380.0 | 380.0 | 1 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 119.0 | 5.0 | 23 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 51.0 | 4.0 | 14 | 9.0 | 3.0 | ||
| Apple Airpods Headphones | 2100.0 | 150.0 | 14 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 700.0 | 100.0 | 7 | 100.0 | 100.0 | ||
| Flatscreen TV | 900.0 | 300.0 | 3 | 300.0 | 300.0 | ||
| Google Phone | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 269.0 | 16.0 | 17 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 11900.0 | 1700.0 | 7 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 2000.0 | 1000.0 | 2 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 239.0 | 13.0 | 18 | 24.0 | 12.0 | ||
| Wired Headphones | 192.0 | 14.0 | 14 | 24.0 | 12.0 | ||
| iPhone | 2100.0 | 700.0 | 3 | 700.0 | 700.0 | ||
| Portland(OR) | 1 | 20in Monitor | 1980.0 | 110.0 | 18 | 110.0 | 110.0 |
| 27in 4K Gaming Monitor | 8970.0 | 390.0 | 23 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 3150.0 | 150.0 | 21 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 6460.0 | 380.0 | 17 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 296.0 | 6.0 | 50 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 182.0 | 4.0 | 48 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 9450.0 | 152.0 | 62 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 2400.0 | 100.0 | 24 | 100.0 | 100.0 | ||
| Flatscreen TV | 4800.0 | 300.0 | 16 | 300.0 | 300.0 | ||
| Google Phone | 9000.0 | 600.0 | 15 | 600.0 | 600.0 | ||
| LG Dryer | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 718.0 | 16.0 | 46 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 13600.0 | 1700.0 | 8 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 13000.0 | 1000.0 | 13 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 753.0 | 13.0 | 59 | 24.0 | 12.0 | ||
| Vareebadd Phone | 3600.0 | 400.0 | 9 | 400.0 | 400.0 | ||
| Wired Headphones | 719.0 | 13.0 | 54 | 24.0 | 12.0 | ||
| iPhone | 12600.0 | 700.0 | 18 | 700.0 | 700.0 | ||
| 10 | 20in Monitor | 1760.0 | 110.0 | 16 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 17550.0 | 399.0 | 44 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 6600.0 | 150.0 | 44 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 12920.0 | 380.0 | 34 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 653.0 | 5.0 | 132 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 565.0 | 5.0 | 123 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 12000.0 | 154.0 | 78 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 8299.0 | 101.0 | 82 | 200.0 | 100.0 | ||
| Flatscreen TV | 7800.0 | 300.0 | 26 | 300.0 | 300.0 | ||
| Google Phone | 21000.0 | 600.0 | 35 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2362.0 | 16.0 | 149 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 51000.0 | 1700.0 | 30 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 23000.0 | 1000.0 | 23 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1888.0 | 13.0 | 143 | 36.0 | 12.0 | ||
| Vareebadd Phone | 3200.0 | 400.0 | 8 | 400.0 | 400.0 | ||
| Wired Headphones | 1583.0 | 13.0 | 123 | 24.0 | 12.0 | ||
| iPhone | 26600.0 | 700.0 | 38 | 700.0 | 700.0 | ||
| 11 | 20in Monitor | 2530.0 | 110.0 | 23 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 9360.0 | 390.0 | 24 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6900.0 | 150.0 | 46 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 11400.0 | 393.0 | 29 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 572.0 | 5.0 | 113 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 517.0 | 5.0 | 107 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 12750.0 | 150.0 | 85 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 5899.0 | 100.0 | 59 | 100.0 | 100.0 | ||
| Flatscreen TV | 7200.0 | 300.0 | 24 | 300.0 | 300.0 | ||
| Google Phone | 19800.0 | 600.0 | 33 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1734.0 | 16.0 | 107 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 45900.0 | 1700.0 | 27 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 18000.0 | 1000.0 | 18 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1434.0 | 13.0 | 113 | 24.0 | 12.0 | ||
| Vareebadd Phone | 4000.0 | 400.0 | 10 | 400.0 | 400.0 | ||
| Wired Headphones | 1115.0 | 13.0 | 83 | 36.0 | 12.0 | ||
| iPhone | 21700.0 | 700.0 | 31 | 700.0 | 700.0 | ||
| 12 | 20in Monitor | 2860.0 | 110.0 | 26 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 16770.0 | 390.0 | 43 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 8699.0 | 150.0 | 58 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 15580.0 | 380.0 | 41 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 791.0 | 5.0 | 150 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 753.0 | 5.0 | 159 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 18750.0 | 151.0 | 124 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 9699.0 | 100.0 | 97 | 100.0 | 100.0 | ||
| Flatscreen TV | 9000.0 | 300.0 | 30 | 300.0 | 300.0 | ||
| Google Phone | 20400.0 | 600.0 | 34 | 600.0 | 600.0 | ||
| LG Dryer | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2631.0 | 16.0 | 168 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 66300.0 | 1700.0 | 39 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 30000.0 | 1000.0 | 30 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1781.0 | 13.0 | 142 | 24.0 | 12.0 | ||
| Vareebadd Phone | 4400.0 | 400.0 | 11 | 400.0 | 400.0 | ||
| Wired Headphones | 1535.0 | 13.0 | 119 | 24.0 | 12.0 | ||
| iPhone | 36400.0 | 700.0 | 52 | 700.0 | 700.0 | ||
| 2 | 20in Monitor | 2310.0 | 115.0 | 20 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 10140.0 | 390.0 | 26 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4650.0 | 155.0 | 30 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 7600.0 | 380.0 | 20 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 338.0 | 5.0 | 68 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 332.0 | 4.0 | 78 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 8550.0 | 150.0 | 57 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 4900.0 | 102.0 | 48 | 200.0 | 100.0 | ||
| Flatscreen TV | 3600.0 | 300.0 | 12 | 300.0 | 300.0 | ||
| Google Phone | 10800.0 | 600.0 | 18 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1241.0 | 16.0 | 76 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 23800.0 | 1700.0 | 14 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 16000.0 | 1000.0 | 16 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 956.0 | 12.0 | 77 | 24.0 | 12.0 | ||
| Vareebadd Phone | 2000.0 | 400.0 | 5 | 400.0 | 400.0 | ||
| Wired Headphones | 791.0 | 13.0 | 61 | 24.0 | 12.0 | ||
| iPhone | 21000.0 | 700.0 | 30 | 700.0 | 700.0 | ||
| 3 | 20in Monitor | 1980.0 | 110.0 | 18 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 8970.0 | 390.0 | 23 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4950.0 | 150.0 | 33 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 12160.0 | 380.0 | 32 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 492.0 | 5.0 | 98 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 443.0 | 5.0 | 92 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 9600.0 | 150.0 | 64 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 6999.0 | 101.0 | 69 | 200.0 | 100.0 | ||
| Flatscreen TV | 3900.0 | 300.0 | 13 | 300.0 | 300.0 | ||
| Google Phone | 9600.0 | 600.0 | 16 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1405.0 | 15.0 | 91 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 51000.0 | 1700.0 | 30 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 19000.0 | 1000.0 | 19 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1171.0 | 14.0 | 86 | 36.0 | 12.0 | ||
| Vareebadd Phone | 4400.0 | 400.0 | 11 | 400.0 | 400.0 | ||
| Wired Headphones | 923.0 | 12.0 | 74 | 24.0 | 12.0 | ||
| iPhone | 16100.0 | 732.0 | 22 | 1400.0 | 700.0 | ||
| 4 | 20in Monitor | 1980.0 | 110.0 | 18 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 12480.0 | 390.0 | 32 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6150.0 | 150.0 | 41 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 15200.0 | 380.0 | 40 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 622.0 | 6.0 | 111 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 440.0 | 4.0 | 99 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 12150.0 | 150.0 | 81 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 6499.0 | 100.0 | 65 | 100.0 | 100.0 | ||
| Flatscreen TV | 9300.0 | 300.0 | 31 | 300.0 | 300.0 | ||
| Google Phone | 22800.0 | 600.0 | 38 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1914.0 | 17.0 | 115 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 52700.0 | 1700.0 | 31 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 15000.0 | 1000.0 | 15 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1506.0 | 13.0 | 115 | 24.0 | 12.0 | ||
| Vareebadd Phone | 5200.0 | 400.0 | 13 | 400.0 | 400.0 | ||
| Wired Headphones | 1403.0 | 14.0 | 100 | 36.0 | 12.0 | ||
| iPhone | 27300.0 | 700.0 | 39 | 700.0 | 700.0 | ||
| 5 | 20in Monitor | 2310.0 | 110.0 | 21 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 12480.0 | 390.0 | 32 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4650.0 | 150.0 | 31 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 12920.0 | 380.0 | 34 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 645.0 | 5.0 | 123 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 478.0 | 4.0 | 109 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 10050.0 | 150.0 | 67 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 6199.0 | 100.0 | 62 | 100.0 | 100.0 | ||
| Flatscreen TV | 5100.0 | 300.0 | 17 | 300.0 | 300.0 | ||
| Google Phone | 13200.0 | 600.0 | 22 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1988.0 | 16.0 | 124 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 45900.0 | 1700.0 | 27 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 20000.0 | 1000.0 | 20 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1326.0 | 13.0 | 100 | 36.0 | 12.0 | ||
| Vareebadd Phone | 4400.0 | 400.0 | 11 | 400.0 | 400.0 | ||
| Wired Headphones | 1283.0 | 13.0 | 100 | 36.0 | 12.0 | ||
| iPhone | 26600.0 | 700.0 | 38 | 700.0 | 700.0 | ||
| 6 | 20in Monitor | 1320.0 | 110.0 | 12 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 8970.0 | 390.0 | 23 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 5400.0 | 150.0 | 36 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 6840.0 | 380.0 | 18 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 384.0 | 5.0 | 77 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 434.0 | 5.0 | 86 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 10950.0 | 150.0 | 73 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 4800.0 | 100.0 | 48 | 100.0 | 100.0 | ||
| Flatscreen TV | 6000.0 | 300.0 | 20 | 300.0 | 300.0 | ||
| Google Phone | 9000.0 | 600.0 | 15 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1196.0 | 16.0 | 75 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 35700.0 | 1700.0 | 21 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 22000.0 | 1000.0 | 22 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1183.0 | 13.0 | 92 | 24.0 | 12.0 | ||
| Vareebadd Phone | 3600.0 | 400.0 | 9 | 400.0 | 400.0 | ||
| Wired Headphones | 1187.0 | 13.0 | 88 | 36.0 | 12.0 | ||
| iPhone | 18200.0 | 700.0 | 26 | 700.0 | 700.0 | ||
| 7 | 20in Monitor | 2200.0 | 110.0 | 20 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 12090.0 | 390.0 | 31 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 3750.0 | 150.0 | 25 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 9880.0 | 380.0 | 26 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 392.0 | 5.0 | 77 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 353.0 | 4.0 | 80 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 10200.0 | 150.0 | 68 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 5799.0 | 102.0 | 57 | 200.0 | 100.0 | ||
| Flatscreen TV | 7200.0 | 300.0 | 24 | 300.0 | 300.0 | ||
| Google Phone | 12000.0 | 600.0 | 20 | 600.0 | 600.0 | ||
| LG Dryer | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1360.0 | 16.0 | 84 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 30600.0 | 1700.0 | 18 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 22000.0 | 1000.0 | 22 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 944.0 | 13.0 | 71 | 24.0 | 12.0 | ||
| Vareebadd Phone | 2400.0 | 400.0 | 6 | 400.0 | 400.0 | ||
| Wired Headphones | 827.0 | 14.0 | 60 | 36.0 | 12.0 | ||
| iPhone | 19600.0 | 700.0 | 28 | 700.0 | 700.0 | ||
| 8 | 20in Monitor | 770.0 | 110.0 | 7 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 9360.0 | 390.0 | 24 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4650.0 | 155.0 | 30 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 5700.0 | 380.0 | 15 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 465.0 | 6.0 | 79 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 308.0 | 4.0 | 74 | 24.0 | 3.0 | ||
| Apple Airpods Headphones | 7650.0 | 153.0 | 50 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 4100.0 | 100.0 | 41 | 100.0 | 100.0 | ||
| Flatscreen TV | 6900.0 | 300.0 | 23 | 300.0 | 300.0 | ||
| Google Phone | 11400.0 | 600.0 | 19 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1241.0 | 16.0 | 77 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 25500.0 | 1700.0 | 15 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 12000.0 | 1000.0 | 12 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1016.0 | 13.0 | 79 | 24.0 | 12.0 | ||
| Vareebadd Phone | 1600.0 | 400.0 | 4 | 400.0 | 400.0 | ||
| Wired Headphones | 923.0 | 13.0 | 73 | 36.0 | 12.0 | ||
| iPhone | 20300.0 | 700.0 | 29 | 700.0 | 700.0 | ||
| 9 | 20in Monitor | 2090.0 | 110.0 | 19 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 8970.0 | 390.0 | 23 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 2850.0 | 150.0 | 19 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 7600.0 | 380.0 | 20 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 303.0 | 5.0 | 66 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 344.0 | 5.0 | 67 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 7800.0 | 150.0 | 52 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 5299.0 | 100.0 | 53 | 100.0 | 100.0 | ||
| Flatscreen TV | 4200.0 | 323.0 | 13 | 600.0 | 300.0 | ||
| Google Phone | 7800.0 | 600.0 | 13 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1076.0 | 16.0 | 67 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 23800.0 | 1700.0 | 14 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 11000.0 | 1000.0 | 11 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 884.0 | 13.0 | 70 | 24.0 | 12.0 | ||
| Vareebadd Phone | 4000.0 | 400.0 | 10 | 400.0 | 400.0 | ||
| Wired Headphones | 695.0 | 13.0 | 55 | 36.0 | 12.0 | ||
| iPhone | 13300.0 | 700.0 | 19 | 700.0 | 700.0 | ||
| San Francisco(CA) | 1 | 20in Monitor | 5719.0 | 112.0 | 51 | 220.0 | 110.0 |
| 27in 4K Gaming Monitor | 30809.0 | 390.0 | 79 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 15299.0 | 150.0 | 102 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 26599.0 | 380.0 | 70 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1448.0 | 5.0 | 270 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1109.0 | 4.0 | 255 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 31050.0 | 151.0 | 206 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 15298.0 | 100.0 | 153 | 100.0 | 100.0 | ||
| Flatscreen TV | 12900.0 | 300.0 | 43 | 300.0 | 300.0 | ||
| Google Phone | 52200.0 | 600.0 | 87 | 600.0 | 600.0 | ||
| LG Dryer | 6600.0 | 600.0 | 11 | 600.0 | 600.0 | ||
| LG Washing Machine | 6600.0 | 600.0 | 11 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 4171.0 | 16.0 | 257 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 88400.0 | 1700.0 | 52 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 49000.0 | 1000.0 | 49 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3800.0 | 13.0 | 285 | 48.0 | 12.0 | ||
| Vareebadd Phone | 9200.0 | 400.0 | 23 | 400.0 | 400.0 | ||
| Wired Headphones | 3285.0 | 13.0 | 259 | 36.0 | 12.0 | ||
| iPhone | 72100.0 | 700.0 | 103 | 700.0 | 700.0 | ||
| 10 | 20in Monitor | 12649.0 | 111.0 | 114 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 64348.0 | 395.0 | 163 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 25348.0 | 150.0 | 169 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 58518.0 | 380.0 | 154 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 2515.0 | 5.0 | 504 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 2240.0 | 4.0 | 505 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 57750.0 | 151.0 | 382 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 36396.0 | 101.0 | 360 | 200.0 | 100.0 | ||
| Flatscreen TV | 38400.0 | 300.0 | 128 | 300.0 | 300.0 | ||
| Google Phone | 89400.0 | 600.0 | 149 | 600.0 | 600.0 | ||
| LG Dryer | 9600.0 | 600.0 | 16 | 600.0 | 600.0 | ||
| LG Washing Machine | 8400.0 | 600.0 | 14 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 9718.0 | 16.0 | 613 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 202300.0 | 1700.0 | 119 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 96999.0 | 1000.0 | 97 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 7457.0 | 13.0 | 574 | 48.0 | 12.0 | ||
| Vareebadd Phone | 19200.0 | 400.0 | 48 | 400.0 | 400.0 | ||
| Wired Headphones | 6463.0 | 13.0 | 492 | 36.0 | 12.0 | ||
| iPhone | 119000.0 | 700.0 | 170 | 700.0 | 700.0 | ||
| 11 | 20in Monitor | 12649.0 | 110.0 | 115 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 51869.0 | 390.0 | 133 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 27148.0 | 151.0 | 180 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 42179.0 | 380.0 | 111 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 2412.0 | 5.0 | 472 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 2168.0 | 5.0 | 481 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 58350.0 | 152.0 | 385 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 31797.0 | 101.0 | 316 | 200.0 | 100.0 | ||
| Flatscreen TV | 34200.0 | 303.0 | 113 | 600.0 | 300.0 | ||
| Google Phone | 72600.0 | 600.0 | 121 | 600.0 | 600.0 | ||
| LG Dryer | 8400.0 | 600.0 | 14 | 600.0 | 600.0 | ||
| LG Washing Machine | 8400.0 | 600.0 | 14 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 7998.0 | 16.0 | 502 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 163200.0 | 1700.0 | 96 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 87999.0 | 1000.0 | 88 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 6692.0 | 13.0 | 505 | 36.0 | 12.0 | ||
| Vareebadd Phone | 18000.0 | 400.0 | 45 | 400.0 | 400.0 | ||
| Wired Headphones | 5719.0 | 13.0 | 448 | 36.0 | 12.0 | ||
| iPhone | 123200.0 | 700.0 | 176 | 700.0 | 700.0 | ||
| 12 | 20in Monitor | 16718.0 | 111.0 | 150 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 72928.0 | 390.0 | 187 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 37198.0 | 151.0 | 247 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 79038.0 | 382.0 | 207 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 3379.0 | 5.0 | 642 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 3175.0 | 5.0 | 703 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 68100.0 | 152.0 | 449 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 43596.0 | 101.0 | 433 | 200.0 | 100.0 | ||
| Flatscreen TV | 49500.0 | 302.0 | 164 | 600.0 | 300.0 | ||
| Google Phone | 120000.0 | 600.0 | 200 | 600.0 | 600.0 | ||
| LG Dryer | 7800.0 | 600.0 | 13 | 600.0 | 600.0 | ||
| LG Washing Machine | 17400.0 | 600.0 | 29 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 10390.0 | 16.0 | 654 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 282200.0 | 1700.0 | 166 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 117999.0 | 1000.0 | 118 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 9823.0 | 13.0 | 750 | 36.0 | 12.0 | ||
| Vareebadd Phone | 26000.0 | 400.0 | 65 | 400.0 | 400.0 | ||
| Wired Headphones | 8357.0 | 13.0 | 652 | 48.0 | 12.0 | ||
| iPhone | 133000.0 | 700.0 | 190 | 700.0 | 700.0 | ||
| 2 | 20in Monitor | 5609.0 | 110.0 | 51 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 39779.0 | 390.0 | 102 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 17699.0 | 150.0 | 118 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 34199.0 | 380.0 | 90 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1555.0 | 5.0 | 302 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1393.0 | 4.0 | 310 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 40950.0 | 151.0 | 272 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 18698.0 | 102.0 | 184 | 200.0 | 100.0 | ||
| Flatscreen TV | 22200.0 | 300.0 | 74 | 300.0 | 300.0 | ||
| Google Phone | 67200.0 | 605.0 | 111 | 1200.0 | 600.0 | ||
| LG Dryer | 5400.0 | 600.0 | 9 | 600.0 | 600.0 | ||
| LG Washing Machine | 7200.0 | 600.0 | 12 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 5158.0 | 16.0 | 326 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 127500.0 | 1700.0 | 75 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 64999.0 | 1000.0 | 65 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 4911.0 | 13.0 | 379 | 36.0 | 12.0 | ||
| Vareebadd Phone | 8000.0 | 400.0 | 20 | 400.0 | 400.0 | ||
| Wired Headphones | 3921.0 | 13.0 | 304 | 36.0 | 12.0 | ||
| iPhone | 70700.0 | 700.0 | 101 | 700.0 | 700.0 | ||
| 3 | 20in Monitor | 9239.0 | 110.0 | 84 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 46019.0 | 390.0 | 118 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 21149.0 | 150.0 | 141 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 44839.0 | 380.0 | 118 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1882.0 | 5.0 | 372 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1743.0 | 5.0 | 384 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 46950.0 | 150.0 | 312 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 29197.0 | 101.0 | 289 | 200.0 | 100.0 | ||
| Flatscreen TV | 27300.0 | 307.0 | 89 | 600.0 | 300.0 | ||
| Google Phone | 60600.0 | 600.0 | 101 | 600.0 | 600.0 | ||
| LG Dryer | 9000.0 | 600.0 | 15 | 600.0 | 600.0 | ||
| LG Washing Machine | 10800.0 | 600.0 | 18 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 6623.0 | 16.0 | 416 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 161500.0 | 1700.0 | 95 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 81999.0 | 1000.0 | 82 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 5939.0 | 13.0 | 449 | 36.0 | 12.0 | ||
| Vareebadd Phone | 18400.0 | 400.0 | 46 | 400.0 | 400.0 | ||
| Wired Headphones | 4149.0 | 13.0 | 322 | 36.0 | 12.0 | ||
| iPhone | 106400.0 | 700.0 | 152 | 700.0 | 700.0 | ||
| 4 | 20in Monitor | 8139.0 | 110.0 | 74 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 52649.0 | 393.0 | 134 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 25348.0 | 150.0 | 169 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 66498.0 | 384.0 | 173 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 2554.0 | 5.0 | 487 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 2231.0 | 4.0 | 502 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 54300.0 | 151.0 | 359 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 32897.0 | 101.0 | 327 | 200.0 | 100.0 | ||
| Flatscreen TV | 33900.0 | 303.0 | 112 | 600.0 | 300.0 | ||
| Google Phone | 77400.0 | 600.0 | 129 | 600.0 | 600.0 | ||
| LG Dryer | 10200.0 | 600.0 | 17 | 600.0 | 600.0 | ||
| LG Washing Machine | 9600.0 | 600.0 | 16 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 8596.0 | 16.0 | 535 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 190400.0 | 1715.0 | 111 | 3400.0 | 1700.0 | ||
| ThinkPad Laptop | 87999.0 | 1000.0 | 88 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 6561.0 | 13.0 | 508 | 36.0 | 12.0 | ||
| Vareebadd Phone | 18800.0 | 400.0 | 47 | 400.0 | 400.0 | ||
| Wired Headphones | 6055.0 | 13.0 | 469 | 36.0 | 12.0 | ||
| iPhone | 118300.0 | 700.0 | 169 | 700.0 | 700.0 | ||
| 5 | 20in Monitor | 8909.0 | 110.0 | 81 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 49919.0 | 393.0 | 127 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 26398.0 | 150.0 | 176 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 47119.0 | 380.0 | 124 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 2231.0 | 5.0 | 435 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1985.0 | 5.0 | 426 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 49350.0 | 151.0 | 327 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 26297.0 | 100.0 | 262 | 200.0 | 100.0 | ||
| Flatscreen TV | 25800.0 | 300.0 | 86 | 300.0 | 300.0 | ||
| Google Phone | 69600.0 | 605.0 | 115 | 1200.0 | 600.0 | ||
| LG Dryer | 7800.0 | 600.0 | 13 | 600.0 | 600.0 | ||
| LG Washing Machine | 10200.0 | 600.0 | 17 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 7445.0 | 16.0 | 456 | 60.0 | 15.0 | ||
| Macbook Pro Laptop | 210800.0 | 1700.0 | 124 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 86999.0 | 1000.0 | 87 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 5987.0 | 13.0 | 448 | 36.0 | 12.0 | ||
| Vareebadd Phone | 24000.0 | 400.0 | 60 | 400.0 | 400.0 | ||
| Wired Headphones | 5240.0 | 13.0 | 406 | 48.0 | 12.0 | ||
| iPhone | 110600.0 | 700.0 | 158 | 700.0 | 700.0 | ||
| 6 | 20in Monitor | 8139.0 | 110.0 | 74 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 38609.0 | 390.0 | 99 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 22199.0 | 151.0 | 147 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 42939.0 | 380.0 | 113 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1893.0 | 5.0 | 383 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1561.0 | 4.0 | 364 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 38700.0 | 154.0 | 252 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 26297.0 | 102.0 | 258 | 300.0 | 100.0 | ||
| Flatscreen TV | 27000.0 | 300.0 | 90 | 300.0 | 300.0 | ||
| Google Phone | 63600.0 | 600.0 | 106 | 600.0 | 600.0 | ||
| LG Dryer | 4800.0 | 600.0 | 8 | 600.0 | 600.0 | ||
| LG Washing Machine | 8400.0 | 600.0 | 14 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 6115.0 | 16.0 | 375 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 141100.0 | 1721.0 | 82 | 3400.0 | 1700.0 | ||
| ThinkPad Laptop | 76999.0 | 1000.0 | 77 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 5210.0 | 13.0 | 395 | 36.0 | 12.0 | ||
| Vareebadd Phone | 13600.0 | 400.0 | 34 | 400.0 | 400.0 | ||
| Wired Headphones | 4113.0 | 13.0 | 315 | 36.0 | 12.0 | ||
| iPhone | 81900.0 | 700.0 | 117 | 700.0 | 700.0 | ||
| 7 | 20in Monitor | 10009.0 | 111.0 | 90 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 47189.0 | 390.0 | 121 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 20399.0 | 153.0 | 133 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 40279.0 | 384.0 | 105 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 2043.0 | 5.0 | 415 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1824.0 | 5.0 | 393 | 27.0 | 3.0 | ||
| Apple Airpods Headphones | 43650.0 | 151.0 | 290 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 26797.0 | 102.0 | 264 | 200.0 | 100.0 | ||
| Flatscreen TV | 28200.0 | 300.0 | 94 | 300.0 | 300.0 | ||
| Google Phone | 57600.0 | 600.0 | 96 | 600.0 | 600.0 | ||
| LG Dryer | 6600.0 | 600.0 | 11 | 600.0 | 600.0 | ||
| LG Washing Machine | 6600.0 | 600.0 | 11 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 6787.0 | 16.0 | 425 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 153000.0 | 1700.0 | 90 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 73999.0 | 1000.0 | 74 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 5378.0 | 13.0 | 402 | 60.0 | 12.0 | ||
| Vareebadd Phone | 17600.0 | 400.0 | 44 | 400.0 | 400.0 | ||
| Wired Headphones | 4628.0 | 13.0 | 345 | 36.0 | 12.0 | ||
| iPhone | 90300.0 | 705.0 | 128 | 1400.0 | 700.0 | ||
| 8 | 20in Monitor | 6049.0 | 114.0 | 53 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 42899.0 | 390.0 | 110 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 17549.0 | 154.0 | 114 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 33819.0 | 380.0 | 89 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1651.0 | 5.0 | 317 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1420.0 | 5.0 | 309 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 34800.0 | 150.0 | 232 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 25897.0 | 101.0 | 257 | 200.0 | 100.0 | ||
| Flatscreen TV | 23400.0 | 300.0 | 78 | 300.0 | 300.0 | ||
| Google Phone | 45600.0 | 608.0 | 75 | 1200.0 | 600.0 | ||
| LG Dryer | 5400.0 | 600.0 | 9 | 600.0 | 600.0 | ||
| LG Washing Machine | 6600.0 | 600.0 | 11 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 4814.0 | 16.0 | 301 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 124100.0 | 1700.0 | 73 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 76999.0 | 1000.0 | 77 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 4087.0 | 13.0 | 316 | 36.0 | 12.0 | ||
| Vareebadd Phone | 12800.0 | 413.0 | 31 | 800.0 | 400.0 | ||
| Wired Headphones | 3693.0 | 13.0 | 284 | 36.0 | 12.0 | ||
| iPhone | 67200.0 | 700.0 | 96 | 700.0 | 700.0 | ||
| 9 | 20in Monitor | 6159.0 | 110.0 | 56 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 32369.0 | 390.0 | 83 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 16349.0 | 153.0 | 107 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 33439.0 | 380.0 | 88 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1609.0 | 5.0 | 304 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1301.0 | 4.0 | 300 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 36000.0 | 151.0 | 239 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 18498.0 | 101.0 | 184 | 200.0 | 100.0 | ||
| Flatscreen TV | 23400.0 | 300.0 | 78 | 300.0 | 300.0 | ||
| Google Phone | 39000.0 | 600.0 | 65 | 600.0 | 600.0 | ||
| LG Dryer | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Washing Machine | 7800.0 | 600.0 | 13 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 5262.0 | 17.0 | 314 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 86700.0 | 1700.0 | 51 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 60999.0 | 1000.0 | 61 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 4589.0 | 13.0 | 357 | 36.0 | 12.0 | ||
| Vareebadd Phone | 12000.0 | 400.0 | 30 | 400.0 | 400.0 | ||
| Wired Headphones | 3921.0 | 13.0 | 296 | 48.0 | 12.0 | ||
| iPhone | 70000.0 | 700.0 | 100 | 700.0 | 700.0 | ||
| Seattle(WA) | 1 | 20in Monitor | 1430.0 | 110.0 | 13 | 110.0 | 110.0 |
| 27in 4K Gaming Monitor | 12480.0 | 390.0 | 32 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 5400.0 | 150.0 | 36 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 11780.0 | 393.0 | 30 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 323.0 | 5.0 | 64 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 353.0 | 4.0 | 80 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 7650.0 | 153.0 | 50 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 6199.0 | 100.0 | 62 | 100.0 | 100.0 | ||
| Flatscreen TV | 6000.0 | 300.0 | 20 | 300.0 | 300.0 | ||
| Google Phone | 10800.0 | 600.0 | 18 | 600.0 | 600.0 | ||
| LG Dryer | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| LG Washing Machine | 4800.0 | 600.0 | 8 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1017.0 | 15.0 | 66 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 23800.0 | 1700.0 | 14 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 18000.0 | 1000.0 | 18 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1231.0 | 14.0 | 88 | 36.0 | 12.0 | ||
| Vareebadd Phone | 6800.0 | 400.0 | 17 | 400.0 | 400.0 | ||
| Wired Headphones | 1031.0 | 13.0 | 80 | 24.0 | 12.0 | ||
| iPhone | 21000.0 | 700.0 | 30 | 700.0 | 700.0 | ||
| 10 | 20in Monitor | 3080.0 | 110.0 | 28 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 23399.0 | 390.0 | 60 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 9599.0 | 150.0 | 64 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 22039.0 | 380.0 | 58 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1006.0 | 5.0 | 195 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 795.0 | 4.0 | 187 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 20550.0 | 150.0 | 137 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 12199.0 | 102.0 | 120 | 200.0 | 100.0 | ||
| Flatscreen TV | 11400.0 | 300.0 | 38 | 300.0 | 300.0 | ||
| Google Phone | 28800.0 | 600.0 | 48 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 6000.0 | 600.0 | 10 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2885.0 | 16.0 | 180 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 71400.0 | 1700.0 | 42 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 41000.0 | 1000.0 | 41 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2569.0 | 13.0 | 198 | 24.0 | 12.0 | ||
| Vareebadd Phone | 6800.0 | 400.0 | 17 | 400.0 | 400.0 | ||
| Wired Headphones | 2434.0 | 13.0 | 181 | 48.0 | 12.0 | ||
| iPhone | 49700.0 | 710.0 | 70 | 1400.0 | 700.0 | ||
| 11 | 20in Monitor | 3850.0 | 110.0 | 35 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 22229.0 | 390.0 | 57 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 8849.0 | 150.0 | 59 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 18620.0 | 380.0 | 49 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 668.0 | 5.0 | 142 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 801.0 | 4.0 | 181 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 18000.0 | 151.0 | 119 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 9399.0 | 101.0 | 93 | 200.0 | 100.0 | ||
| Flatscreen TV | 11100.0 | 308.0 | 36 | 600.0 | 300.0 | ||
| Google Phone | 24000.0 | 600.0 | 40 | 600.0 | 600.0 | ||
| LG Dryer | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2751.0 | 16.0 | 168 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 45900.0 | 1700.0 | 27 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 34000.0 | 1000.0 | 34 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2270.0 | 13.0 | 177 | 48.0 | 12.0 | ||
| Vareebadd Phone | 7200.0 | 400.0 | 18 | 400.0 | 400.0 | ||
| Wired Headphones | 1643.0 | 13.0 | 126 | 36.0 | 12.0 | ||
| iPhone | 33600.0 | 700.0 | 48 | 700.0 | 700.0 | ||
| 12 | 20in Monitor | 4730.0 | 110.0 | 43 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 26519.0 | 390.0 | 68 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 10499.0 | 150.0 | 70 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 21279.0 | 380.0 | 56 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1121.0 | 5.0 | 216 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 972.0 | 4.0 | 219 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 22800.0 | 150.0 | 152 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 15598.0 | 100.0 | 156 | 100.0 | 100.0 | ||
| Flatscreen TV | 16800.0 | 300.0 | 56 | 300.0 | 300.0 | ||
| Google Phone | 40800.0 | 600.0 | 68 | 600.0 | 600.0 | ||
| LG Dryer | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3738.0 | 16.0 | 236 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 102000.0 | 1700.0 | 60 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 39000.0 | 1000.0 | 39 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2928.0 | 13.0 | 231 | 36.0 | 12.0 | ||
| Vareebadd Phone | 8800.0 | 400.0 | 22 | 400.0 | 400.0 | ||
| Wired Headphones | 2434.0 | 13.0 | 188 | 36.0 | 12.0 | ||
| iPhone | 59500.0 | 700.0 | 85 | 700.0 | 700.0 | ||
| 2 | 20in Monitor | 1980.0 | 110.0 | 18 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 16380.0 | 400.0 | 41 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 5250.0 | 150.0 | 35 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 14060.0 | 380.0 | 37 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 626.0 | 5.0 | 115 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 478.0 | 5.0 | 102 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 10200.0 | 150.0 | 68 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 6499.0 | 100.0 | 65 | 100.0 | 100.0 | ||
| Flatscreen TV | 7200.0 | 300.0 | 24 | 300.0 | 300.0 | ||
| Google Phone | 17400.0 | 600.0 | 29 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1749.0 | 17.0 | 106 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 35700.0 | 1700.0 | 21 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 19000.0 | 1000.0 | 19 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1458.0 | 13.0 | 108 | 36.0 | 12.0 | ||
| Vareebadd Phone | 3200.0 | 400.0 | 8 | 400.0 | 400.0 | ||
| Wired Headphones | 1151.0 | 13.0 | 89 | 24.0 | 12.0 | ||
| iPhone | 26600.0 | 700.0 | 38 | 700.0 | 700.0 | ||
| 3 | 20in Monitor | 2530.0 | 110.0 | 23 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 19110.0 | 390.0 | 49 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6300.0 | 150.0 | 42 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 22039.0 | 380.0 | 58 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 676.0 | 5.0 | 137 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 532.0 | 4.0 | 123 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 16650.0 | 150.0 | 111 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 8799.0 | 101.0 | 87 | 200.0 | 100.0 | ||
| Flatscreen TV | 7500.0 | 300.0 | 25 | 300.0 | 300.0 | ||
| Google Phone | 13800.0 | 600.0 | 23 | 600.0 | 600.0 | ||
| LG Dryer | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2272.0 | 16.0 | 139 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 44200.0 | 1700.0 | 26 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 31000.0 | 1000.0 | 31 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1792.0 | 13.0 | 141 | 36.0 | 12.0 | ||
| Vareebadd Phone | 4400.0 | 400.0 | 11 | 400.0 | 400.0 | ||
| Wired Headphones | 1619.0 | 13.0 | 121 | 48.0 | 12.0 | ||
| iPhone | 28700.0 | 700.0 | 41 | 700.0 | 700.0 | ||
| 4 | 20in Monitor | 4400.0 | 113.0 | 39 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 22229.0 | 397.0 | 56 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 9749.0 | 150.0 | 65 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 22039.0 | 380.0 | 58 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 764.0 | 5.0 | 156 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 616.0 | 4.0 | 140 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 19650.0 | 150.0 | 131 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 9399.0 | 100.0 | 94 | 100.0 | 100.0 | ||
| Flatscreen TV | 9600.0 | 300.0 | 32 | 300.0 | 300.0 | ||
| Google Phone | 29400.0 | 600.0 | 49 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2706.0 | 16.0 | 166 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 59500.0 | 1700.0 | 35 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 37000.0 | 1000.0 | 37 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2079.0 | 14.0 | 153 | 72.0 | 12.0 | ||
| Vareebadd Phone | 8400.0 | 400.0 | 21 | 400.0 | 400.0 | ||
| Wired Headphones | 2122.0 | 13.0 | 158 | 36.0 | 12.0 | ||
| iPhone | 33600.0 | 700.0 | 48 | 700.0 | 700.0 | ||
| 5 | 20in Monitor | 2200.0 | 110.0 | 20 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 15990.0 | 390.0 | 41 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6600.0 | 150.0 | 44 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 16340.0 | 380.0 | 43 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 845.0 | 5.0 | 161 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 679.0 | 4.0 | 151 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 16950.0 | 151.0 | 112 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 7999.0 | 100.0 | 80 | 100.0 | 100.0 | ||
| Flatscreen TV | 9600.0 | 300.0 | 32 | 300.0 | 300.0 | ||
| Google Phone | 17400.0 | 600.0 | 29 | 600.0 | 600.0 | ||
| LG Dryer | 4800.0 | 600.0 | 8 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2003.0 | 15.0 | 132 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 45900.0 | 1700.0 | 27 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 25000.0 | 1000.0 | 25 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2079.0 | 13.0 | 159 | 36.0 | 12.0 | ||
| Vareebadd Phone | 5200.0 | 400.0 | 13 | 400.0 | 400.0 | ||
| Wired Headphones | 1571.0 | 13.0 | 121 | 24.0 | 12.0 | ||
| iPhone | 28700.0 | 700.0 | 41 | 700.0 | 700.0 | ||
| 6 | 20in Monitor | 2750.0 | 110.0 | 25 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 15990.0 | 390.0 | 41 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6300.0 | 150.0 | 42 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 12920.0 | 380.0 | 34 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 584.0 | 5.0 | 113 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 601.0 | 5.0 | 122 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 11550.0 | 152.0 | 76 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 7599.0 | 100.0 | 76 | 100.0 | 100.0 | ||
| Flatscreen TV | 8400.0 | 300.0 | 28 | 300.0 | 300.0 | ||
| Google Phone | 24000.0 | 600.0 | 40 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1704.0 | 16.0 | 108 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 49300.0 | 1700.0 | 29 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 28000.0 | 1000.0 | 28 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1350.0 | 13.0 | 105 | 24.0 | 12.0 | ||
| Vareebadd Phone | 3600.0 | 400.0 | 9 | 400.0 | 400.0 | ||
| Wired Headphones | 1607.0 | 13.0 | 125 | 36.0 | 12.0 | ||
| iPhone | 32200.0 | 700.0 | 46 | 700.0 | 700.0 | ||
| 7 | 20in Monitor | 3080.0 | 114.0 | 27 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 11700.0 | 390.0 | 30 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 7050.0 | 153.0 | 46 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 16720.0 | 380.0 | 44 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 530.0 | 5.0 | 102 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 550.0 | 5.0 | 113 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 17400.0 | 150.0 | 116 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 7699.0 | 100.0 | 77 | 100.0 | 100.0 | ||
| Flatscreen TV | 9900.0 | 300.0 | 33 | 300.0 | 300.0 | ||
| Google Phone | 18000.0 | 600.0 | 30 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2242.0 | 17.0 | 135 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 56100.0 | 1700.0 | 33 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 21000.0 | 1000.0 | 21 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1637.0 | 13.0 | 124 | 36.0 | 12.0 | ||
| Vareebadd Phone | 7600.0 | 400.0 | 19 | 400.0 | 400.0 | ||
| Wired Headphones | 1607.0 | 13.0 | 125 | 24.0 | 12.0 | ||
| iPhone | 23100.0 | 700.0 | 33 | 700.0 | 700.0 | ||
| 8 | 20in Monitor | 2530.0 | 110.0 | 23 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 14430.0 | 390.0 | 37 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 5550.0 | 154.0 | 36 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 11780.0 | 380.0 | 31 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 664.0 | 5.0 | 121 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 529.0 | 5.0 | 116 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 13650.0 | 153.0 | 89 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 7399.0 | 101.0 | 73 | 200.0 | 100.0 | ||
| Flatscreen TV | 7200.0 | 300.0 | 24 | 300.0 | 300.0 | ||
| Google Phone | 17400.0 | 600.0 | 29 | 600.0 | 600.0 | ||
| LG Dryer | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Washing Machine | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1839.0 | 16.0 | 117 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 45900.0 | 1700.0 | 27 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 24000.0 | 1000.0 | 24 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1446.0 | 13.0 | 108 | 36.0 | 12.0 | ||
| Vareebadd Phone | 5200.0 | 400.0 | 13 | 400.0 | 400.0 | ||
| Wired Headphones | 1199.0 | 13.0 | 94 | 24.0 | 12.0 | ||
| iPhone | 22400.0 | 700.0 | 32 | 700.0 | 700.0 | ||
| 9 | 20in Monitor | 3080.0 | 110.0 | 28 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 9360.0 | 390.0 | 24 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 5700.0 | 150.0 | 38 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 13300.0 | 380.0 | 35 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 561.0 | 5.0 | 111 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 407.0 | 5.0 | 90 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 13650.0 | 153.0 | 89 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 7399.0 | 100.0 | 74 | 100.0 | 100.0 | ||
| Flatscreen TV | 7800.0 | 300.0 | 26 | 300.0 | 300.0 | ||
| Google Phone | 18600.0 | 600.0 | 31 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1630.0 | 16.0 | 99 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 25500.0 | 1700.0 | 15 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 16000.0 | 1000.0 | 16 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1494.0 | 13.0 | 112 | 24.0 | 12.0 | ||
| Vareebadd Phone | 4400.0 | 400.0 | 11 | 400.0 | 400.0 | ||
| Wired Headphones | 1391.0 | 14.0 | 101 | 48.0 | 12.0 | ||
| iPhone | 23100.0 | 700.0 | 33 | 700.0 | 700.0 | ||
stockDataAllMonthGropued_New333 = pd.DataFrame(stockDataAllMonthGropued)
stockDataAllMonthGropued_New333
| Sales | |||||||
|---|---|---|---|---|---|---|---|
| sum | mean | count | max | min | |||
| City | Month | Product | |||||
| Atlanta(GA) | 1 | 20in Monitor | 1650.0 | 118.0 | 14 | 220.0 | 110.0 |
| 27in 4K Gaming Monitor | 7410.0 | 390.0 | 19 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4650.0 | 150.0 | 31 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 8360.0 | 380.0 | 22 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 396.0 | 5.0 | 79 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 392.0 | 5.0 | 87 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 10350.0 | 150.0 | 69 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 6199.0 | 100.0 | 62 | 100.0 | 100.0 | ||
| Flatscreen TV | 6600.0 | 300.0 | 22 | 300.0 | 300.0 | ||
| Google Phone | 14400.0 | 600.0 | 24 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1659.0 | 17.0 | 98 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 25500.0 | 1700.0 | 15 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 28000.0 | 1000.0 | 28 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1076.0 | 12.0 | 87 | 24.0 | 12.0 | ||
| Vareebadd Phone | 2800.0 | 400.0 | 7 | 400.0 | 400.0 | ||
| Wired Headphones | 1019.0 | 13.0 | 79 | 36.0 | 12.0 | ||
| iPhone | 24500.0 | 700.0 | 35 | 700.0 | 700.0 | ||
| 10 | 20in Monitor | 3190.0 | 110.0 | 29 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 23789.0 | 390.0 | 61 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 10049.0 | 150.0 | 67 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 19759.0 | 387.0 | 51 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 837.0 | 5.0 | 164 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 759.0 | 4.0 | 172 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 20250.0 | 150.0 | 135 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 10899.0 | 103.0 | 106 | 200.0 | 100.0 | ||
| Flatscreen TV | 15900.0 | 300.0 | 53 | 300.0 | 300.0 | ||
| Google Phone | 25800.0 | 600.0 | 43 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3050.0 | 16.0 | 190 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 76500.0 | 1700.0 | 45 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 37000.0 | 1000.0 | 37 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2928.0 | 13.0 | 223 | 36.0 | 12.0 | ||
| Vareebadd Phone | 6000.0 | 400.0 | 15 | 400.0 | 400.0 | ||
| Wired Headphones | 1882.0 | 13.0 | 142 | 36.0 | 12.0 | ||
| iPhone | 44100.0 | 700.0 | 63 | 700.0 | 700.0 | ||
| 11 | 20in Monitor | 3740.0 | 110.0 | 34 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 19110.0 | 390.0 | 49 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 8399.0 | 153.0 | 55 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 16720.0 | 389.0 | 43 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 753.0 | 5.0 | 146 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 649.0 | 4.0 | 155 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 16050.0 | 150.0 | 107 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 9899.0 | 101.0 | 98 | 200.0 | 100.0 | ||
| Flatscreen TV | 9900.0 | 300.0 | 33 | 300.0 | 300.0 | ||
| Google Phone | 26400.0 | 600.0 | 44 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2736.0 | 16.0 | 172 | 60.0 | 15.0 | ||
| Macbook Pro Laptop | 83300.0 | 1700.0 | 49 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 30000.0 | 1000.0 | 30 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2366.0 | 13.0 | 181 | 48.0 | 12.0 | ||
| Vareebadd Phone | 5200.0 | 400.0 | 13 | 400.0 | 400.0 | ||
| Wired Headphones | 1918.0 | 13.0 | 150 | 36.0 | 12.0 | ||
| iPhone | 32200.0 | 716.0 | 45 | 1400.0 | 700.0 | ||
| 12 | 20in Monitor | 5390.0 | 110.0 | 49 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 29249.0 | 390.0 | 75 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 10799.0 | 152.0 | 71 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 27739.0 | 385.0 | 72 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 1206.0 | 5.0 | 226 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 972.0 | 4.0 | 221 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 26100.0 | 150.0 | 174 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 14099.0 | 101.0 | 140 | 200.0 | 100.0 | ||
| Flatscreen TV | 13200.0 | 300.0 | 44 | 300.0 | 300.0 | ||
| Google Phone | 33600.0 | 600.0 | 56 | 600.0 | 600.0 | ||
| LG Dryer | 7200.0 | 600.0 | 12 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3498.0 | 16.0 | 223 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 76500.0 | 1700.0 | 45 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 52999.0 | 1000.0 | 53 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3346.0 | 13.0 | 260 | 36.0 | 12.0 | ||
| Vareebadd Phone | 9200.0 | 400.0 | 23 | 400.0 | 400.0 | ||
| Wired Headphones | 2302.0 | 13.0 | 182 | 24.0 | 12.0 | ||
| iPhone | 39900.0 | 700.0 | 57 | 700.0 | 700.0 | ||
| 2 | 20in Monitor | 2090.0 | 110.0 | 19 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 10140.0 | 390.0 | 26 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4500.0 | 150.0 | 30 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 12920.0 | 380.0 | 34 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 515.0 | 5.0 | 103 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 454.0 | 4.0 | 105 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 12000.0 | 150.0 | 80 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 6799.0 | 100.0 | 68 | 100.0 | 100.0 | ||
| Flatscreen TV | 9900.0 | 300.0 | 33 | 300.0 | 300.0 | ||
| Google Phone | 13800.0 | 600.0 | 23 | 600.0 | 600.0 | ||
| LG Dryer | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| LG Washing Machine | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1809.0 | 16.0 | 113 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 39100.0 | 1700.0 | 23 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 27000.0 | 1000.0 | 27 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1625.0 | 13.0 | 124 | 36.0 | 12.0 | ||
| Vareebadd Phone | 3200.0 | 400.0 | 8 | 400.0 | 400.0 | ||
| Wired Headphones | 1019.0 | 13.0 | 77 | 36.0 | 12.0 | ||
| iPhone | 26600.0 | 700.0 | 38 | 700.0 | 700.0 | ||
| 3 | 20in Monitor | 3410.0 | 110.0 | 31 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 14430.0 | 401.0 | 36 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 6450.0 | 154.0 | 42 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 19000.0 | 388.0 | 49 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 695.0 | 5.0 | 138 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 547.0 | 4.0 | 133 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 16800.0 | 150.0 | 112 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 8299.0 | 100.0 | 83 | 100.0 | 100.0 | ||
| Flatscreen TV | 11100.0 | 300.0 | 37 | 300.0 | 300.0 | ||
| Google Phone | 27600.0 | 600.0 | 46 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2332.0 | 16.0 | 149 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 45900.0 | 1700.0 | 27 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 23000.0 | 1000.0 | 23 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1613.0 | 13.0 | 126 | 36.0 | 12.0 | ||
| Vareebadd Phone | 7600.0 | 400.0 | 19 | 400.0 | 400.0 | ||
| Wired Headphones | 1930.0 | 14.0 | 134 | 48.0 | 12.0 | ||
| iPhone | 36400.0 | 700.0 | 52 | 700.0 | 700.0 | ||
| 4 | 20in Monitor | 3300.0 | 110.0 | 30 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 13650.0 | 390.0 | 35 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 10049.0 | 150.0 | 67 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 15580.0 | 380.0 | 41 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 806.0 | 5.0 | 162 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 715.0 | 4.0 | 161 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 18900.0 | 150.0 | 126 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 10799.0 | 100.0 | 108 | 100.0 | 100.0 | ||
| Flatscreen TV | 12900.0 | 300.0 | 43 | 300.0 | 300.0 | ||
| Google Phone | 27600.0 | 600.0 | 46 | 600.0 | 600.0 | ||
| LG Dryer | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2885.0 | 16.0 | 179 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 64600.0 | 1700.0 | 38 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 37000.0 | 1000.0 | 37 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2103.0 | 13.0 | 161 | 48.0 | 12.0 | ||
| Vareebadd Phone | 7600.0 | 400.0 | 19 | 400.0 | 400.0 | ||
| Wired Headphones | 1763.0 | 13.0 | 141 | 36.0 | 12.0 | ||
| iPhone | 47600.0 | 710.0 | 67 | 1400.0 | 700.0 | ||
| 5 | 20in Monitor | 2860.0 | 110.0 | 26 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 14040.0 | 390.0 | 36 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 7949.0 | 150.0 | 53 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 14820.0 | 380.0 | 39 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 783.0 | 5.0 | 159 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 628.0 | 5.0 | 132 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 17250.0 | 151.0 | 114 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 9999.0 | 101.0 | 99 | 200.0 | 100.0 | ||
| Flatscreen TV | 9600.0 | 300.0 | 32 | 300.0 | 300.0 | ||
| Google Phone | 25800.0 | 600.0 | 43 | 600.0 | 600.0 | ||
| LG Dryer | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2796.0 | 16.0 | 170 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 51000.0 | 1700.0 | 30 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 30000.0 | 1000.0 | 30 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2055.0 | 13.0 | 159 | 24.0 | 12.0 | ||
| Vareebadd Phone | 7200.0 | 400.0 | 18 | 400.0 | 400.0 | ||
| Wired Headphones | 1775.0 | 14.0 | 130 | 36.0 | 12.0 | ||
| iPhone | 34300.0 | 700.0 | 49 | 700.0 | 700.0 | ||
| 6 | 20in Monitor | 2970.0 | 110.0 | 27 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 14040.0 | 390.0 | 36 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6900.0 | 153.0 | 45 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 13680.0 | 380.0 | 36 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 634.0 | 5.0 | 123 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 472.0 | 5.0 | 104 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 14850.0 | 152.0 | 98 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 8899.0 | 100.0 | 89 | 100.0 | 100.0 | ||
| Flatscreen TV | 10500.0 | 300.0 | 35 | 300.0 | 300.0 | ||
| Google Phone | 26400.0 | 600.0 | 44 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 6000.0 | 600.0 | 10 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2048.0 | 16.0 | 129 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 44200.0 | 1700.0 | 26 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 32000.0 | 1000.0 | 32 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1398.0 | 13.0 | 110 | 36.0 | 12.0 | ||
| Vareebadd Phone | 6400.0 | 400.0 | 16 | 400.0 | 400.0 | ||
| Wired Headphones | 1427.0 | 13.0 | 108 | 36.0 | 12.0 | ||
| iPhone | 25200.0 | 700.0 | 36 | 700.0 | 700.0 | ||
| 7 | 20in Monitor | 3410.0 | 110.0 | 31 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 13650.0 | 390.0 | 35 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 8399.0 | 150.0 | 56 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 13300.0 | 380.0 | 35 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 653.0 | 5.0 | 138 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 499.0 | 4.0 | 115 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 15000.0 | 152.0 | 99 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 8799.0 | 100.0 | 88 | 100.0 | 100.0 | ||
| Flatscreen TV | 7800.0 | 300.0 | 26 | 300.0 | 300.0 | ||
| Google Phone | 17400.0 | 600.0 | 29 | 600.0 | 600.0 | ||
| LG Dryer | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| LG Washing Machine | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1973.0 | 16.0 | 124 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 47600.0 | 1700.0 | 28 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 27000.0 | 1000.0 | 27 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1697.0 | 13.0 | 130 | 36.0 | 12.0 | ||
| Vareebadd Phone | 5200.0 | 400.0 | 13 | 400.0 | 400.0 | ||
| Wired Headphones | 1487.0 | 13.0 | 116 | 36.0 | 12.0 | ||
| iPhone | 30100.0 | 700.0 | 43 | 700.0 | 700.0 | ||
| 8 | 20in Monitor | 3300.0 | 114.0 | 29 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 17550.0 | 390.0 | 45 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4500.0 | 150.0 | 30 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 10260.0 | 380.0 | 27 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 545.0 | 5.0 | 109 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 490.0 | 4.0 | 113 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 12300.0 | 150.0 | 82 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 6399.0 | 102.0 | 63 | 200.0 | 100.0 | ||
| Flatscreen TV | 7200.0 | 300.0 | 24 | 300.0 | 300.0 | ||
| Google Phone | 18000.0 | 600.0 | 30 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1674.0 | 16.0 | 104 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 39100.0 | 1700.0 | 23 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 13000.0 | 1000.0 | 13 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1243.0 | 13.0 | 98 | 24.0 | 12.0 | ||
| Vareebadd Phone | 6400.0 | 400.0 | 16 | 400.0 | 400.0 | ||
| Wired Headphones | 1307.0 | 13.0 | 97 | 24.0 | 12.0 | ||
| iPhone | 22400.0 | 700.0 | 32 | 700.0 | 700.0 | ||
| 9 | 20in Monitor | 2310.0 | 122.0 | 19 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 15210.0 | 390.0 | 39 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 5550.0 | 150.0 | 37 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 11020.0 | 380.0 | 29 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 599.0 | 5.0 | 114 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 475.0 | 5.0 | 100 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 10050.0 | 150.0 | 67 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 7299.0 | 100.0 | 73 | 100.0 | 100.0 | ||
| Flatscreen TV | 7500.0 | 326.0 | 23 | 600.0 | 300.0 | ||
| Google Phone | 13800.0 | 600.0 | 23 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1630.0 | 16.0 | 103 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 51000.0 | 1700.0 | 30 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 20000.0 | 1000.0 | 20 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1434.0 | 13.0 | 114 | 24.0 | 12.0 | ||
| Vareebadd Phone | 2400.0 | 400.0 | 6 | 400.0 | 400.0 | ||
| Wired Headphones | 1103.0 | 12.0 | 89 | 24.0 | 12.0 | ||
| iPhone | 17500.0 | 700.0 | 25 | 700.0 | 700.0 | ||
| Austin(TX) | 1 | 20in Monitor | 1320.0 | 110.0 | 12 | 110.0 | 110.0 |
| 27in 4K Gaming Monitor | 5460.0 | 390.0 | 14 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 3750.0 | 156.0 | 24 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 4940.0 | 380.0 | 13 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 280.0 | 5.0 | 57 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 257.0 | 4.0 | 61 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 6750.0 | 150.0 | 45 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 4000.0 | 100.0 | 40 | 100.0 | 100.0 | ||
| Flatscreen TV | 3900.0 | 300.0 | 13 | 300.0 | 300.0 | ||
| Google Phone | 10800.0 | 600.0 | 18 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 867.0 | 15.0 | 56 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 20400.0 | 1700.0 | 12 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 7000.0 | 1000.0 | 7 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 896.0 | 12.0 | 72 | 24.0 | 12.0 | ||
| Vareebadd Phone | 2400.0 | 400.0 | 6 | 400.0 | 400.0 | ||
| Wired Headphones | 767.0 | 13.0 | 58 | 24.0 | 12.0 | ||
| iPhone | 11900.0 | 700.0 | 17 | 700.0 | 700.0 | ||
| 10 | 20in Monitor | 2530.0 | 110.0 | 23 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 18720.0 | 390.0 | 48 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 5850.0 | 150.0 | 39 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 16340.0 | 380.0 | 43 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 564.0 | 5.0 | 113 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 640.0 | 5.0 | 135 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 12600.0 | 150.0 | 84 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 8199.0 | 105.0 | 78 | 200.0 | 100.0 | ||
| Flatscreen TV | 8700.0 | 300.0 | 29 | 300.0 | 300.0 | ||
| Google Phone | 13200.0 | 600.0 | 22 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2138.0 | 16.0 | 137 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 45900.0 | 1700.0 | 27 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 32000.0 | 1000.0 | 32 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1458.0 | 13.0 | 113 | 24.0 | 12.0 | ||
| Vareebadd Phone | 2400.0 | 400.0 | 6 | 400.0 | 400.0 | ||
| Wired Headphones | 1559.0 | 13.0 | 119 | 48.0 | 12.0 | ||
| iPhone | 28000.0 | 700.0 | 40 | 700.0 | 700.0 | ||
| 11 | 20in Monitor | 2970.0 | 110.0 | 27 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 11700.0 | 390.0 | 30 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4950.0 | 155.0 | 32 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 11780.0 | 380.0 | 31 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 511.0 | 5.0 | 102 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 416.0 | 5.0 | 90 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 12450.0 | 150.0 | 83 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 7099.0 | 101.0 | 70 | 200.0 | 100.0 | ||
| Flatscreen TV | 8100.0 | 300.0 | 27 | 300.0 | 300.0 | ||
| Google Phone | 11400.0 | 600.0 | 19 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1390.0 | 16.0 | 87 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 44200.0 | 1700.0 | 26 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 19000.0 | 1000.0 | 19 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1243.0 | 14.0 | 91 | 36.0 | 12.0 | ||
| Vareebadd Phone | 4000.0 | 400.0 | 10 | 400.0 | 400.0 | ||
| Wired Headphones | 1079.0 | 13.0 | 83 | 24.0 | 12.0 | ||
| iPhone | 26600.0 | 700.0 | 38 | 700.0 | 700.0 | ||
| 12 | 20in Monitor | 3520.0 | 110.0 | 32 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 15210.0 | 390.0 | 39 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 5850.0 | 150.0 | 39 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 17100.0 | 380.0 | 45 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 806.0 | 5.0 | 149 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 613.0 | 4.0 | 139 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 20400.0 | 152.0 | 134 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 9799.0 | 101.0 | 97 | 200.0 | 100.0 | ||
| Flatscreen TV | 10800.0 | 300.0 | 36 | 300.0 | 300.0 | ||
| Google Phone | 28200.0 | 600.0 | 47 | 600.0 | 600.0 | ||
| LG Dryer | 5400.0 | 600.0 | 9 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2691.0 | 16.0 | 171 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 44200.0 | 1700.0 | 26 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 24000.0 | 1000.0 | 24 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2163.0 | 14.0 | 160 | 36.0 | 12.0 | ||
| Vareebadd Phone | 7200.0 | 400.0 | 18 | 400.0 | 400.0 | ||
| Wired Headphones | 1727.0 | 13.0 | 134 | 36.0 | 12.0 | ||
| iPhone | 32900.0 | 700.0 | 47 | 700.0 | 700.0 | ||
| 2 | 20in Monitor | 1210.0 | 110.0 | 11 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 8970.0 | 390.0 | 23 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 2400.0 | 150.0 | 16 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 7980.0 | 380.0 | 21 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 253.0 | 5.0 | 52 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 281.0 | 4.0 | 65 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 9150.0 | 150.0 | 61 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 5199.0 | 102.0 | 51 | 200.0 | 100.0 | ||
| Flatscreen TV | 3600.0 | 300.0 | 12 | 300.0 | 300.0 | ||
| Google Phone | 6600.0 | 600.0 | 11 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1465.0 | 17.0 | 88 | 60.0 | 15.0 | ||
| Macbook Pro Laptop | 23800.0 | 1700.0 | 14 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 12000.0 | 1000.0 | 12 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 980.0 | 12.0 | 80 | 24.0 | 12.0 | ||
| Vareebadd Phone | 2000.0 | 400.0 | 5 | 400.0 | 400.0 | ||
| Wired Headphones | 899.0 | 13.0 | 71 | 36.0 | 12.0 | ||
| iPhone | 19600.0 | 700.0 | 28 | 700.0 | 700.0 | ||
| 3 | 20in Monitor | 1870.0 | 117.0 | 16 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 9750.0 | 390.0 | 25 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4200.0 | 150.0 | 28 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 9880.0 | 380.0 | 26 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 518.0 | 5.0 | 96 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 395.0 | 4.0 | 94 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 12750.0 | 150.0 | 85 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 5499.0 | 102.0 | 54 | 200.0 | 100.0 | ||
| Flatscreen TV | 4800.0 | 300.0 | 16 | 300.0 | 300.0 | ||
| Google Phone | 14400.0 | 600.0 | 24 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1734.0 | 16.0 | 109 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 35700.0 | 1700.0 | 21 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 21000.0 | 1000.0 | 21 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1267.0 | 13.0 | 98 | 36.0 | 12.0 | ||
| Vareebadd Phone | 2400.0 | 400.0 | 6 | 400.0 | 400.0 | ||
| Wired Headphones | 1187.0 | 14.0 | 82 | 48.0 | 12.0 | ||
| iPhone | 22400.0 | 700.0 | 32 | 700.0 | 700.0 | ||
| 4 | 20in Monitor | 2750.0 | 110.0 | 25 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 12090.0 | 390.0 | 31 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 5250.0 | 154.0 | 34 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 12920.0 | 380.0 | 34 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 588.0 | 5.0 | 118 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 434.0 | 5.0 | 93 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 12450.0 | 154.0 | 81 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 5799.0 | 102.0 | 57 | 200.0 | 100.0 | ||
| Flatscreen TV | 9000.0 | 300.0 | 30 | 300.0 | 300.0 | ||
| Google Phone | 17400.0 | 600.0 | 29 | 600.0 | 600.0 | ||
| LG Dryer | 4800.0 | 600.0 | 8 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2003.0 | 16.0 | 127 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 32300.0 | 1700.0 | 19 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 13000.0 | 1000.0 | 13 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1338.0 | 13.0 | 103 | 24.0 | 12.0 | ||
| Vareebadd Phone | 4400.0 | 400.0 | 11 | 400.0 | 400.0 | ||
| Wired Headphones | 1463.0 | 13.0 | 110 | 24.0 | 12.0 | ||
| iPhone | 32900.0 | 700.0 | 47 | 700.0 | 700.0 | ||
| 5 | 20in Monitor | 1650.0 | 110.0 | 15 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 8190.0 | 390.0 | 21 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4050.0 | 150.0 | 27 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 10640.0 | 380.0 | 28 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 411.0 | 5.0 | 87 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 544.0 | 5.0 | 106 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 11100.0 | 150.0 | 74 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 5699.0 | 104.0 | 55 | 200.0 | 100.0 | ||
| Flatscreen TV | 3000.0 | 300.0 | 10 | 300.0 | 300.0 | ||
| Google Phone | 16800.0 | 600.0 | 28 | 600.0 | 600.0 | ||
| LG Dryer | 4800.0 | 600.0 | 8 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1734.0 | 16.0 | 106 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 40800.0 | 1700.0 | 24 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 26000.0 | 1000.0 | 26 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1279.0 | 13.0 | 99 | 24.0 | 12.0 | ||
| Vareebadd Phone | 2800.0 | 400.0 | 7 | 400.0 | 400.0 | ||
| Wired Headphones | 1139.0 | 13.0 | 88 | 24.0 | 12.0 | ||
| iPhone | 18200.0 | 700.0 | 26 | 700.0 | 700.0 | ||
| 6 | 20in Monitor | 2310.0 | 115.0 | 20 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 6240.0 | 390.0 | 16 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 5400.0 | 150.0 | 36 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 9120.0 | 380.0 | 24 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 442.0 | 5.0 | 85 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 293.0 | 4.0 | 66 | 9.0 | 3.0 | ||
| Apple Airpods Headphones | 9750.0 | 152.0 | 64 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 4600.0 | 102.0 | 45 | 200.0 | 100.0 | ||
| Flatscreen TV | 6300.0 | 300.0 | 21 | 300.0 | 300.0 | ||
| Google Phone | 12000.0 | 600.0 | 20 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1465.0 | 16.0 | 92 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 45900.0 | 1700.0 | 27 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 14000.0 | 1000.0 | 14 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 968.0 | 13.0 | 77 | 24.0 | 12.0 | ||
| Vareebadd Phone | 4400.0 | 400.0 | 11 | 400.0 | 400.0 | ||
| Wired Headphones | 971.0 | 14.0 | 68 | 24.0 | 12.0 | ||
| iPhone | 17500.0 | 700.0 | 25 | 700.0 | 700.0 | ||
| 7 | 20in Monitor | 1650.0 | 110.0 | 15 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 11700.0 | 390.0 | 30 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4650.0 | 150.0 | 31 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 9880.0 | 380.0 | 26 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 342.0 | 5.0 | 73 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 380.0 | 5.0 | 84 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 10050.0 | 150.0 | 67 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 5499.0 | 100.0 | 55 | 100.0 | 100.0 | ||
| Flatscreen TV | 5700.0 | 300.0 | 19 | 300.0 | 300.0 | ||
| Google Phone | 9000.0 | 600.0 | 15 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1585.0 | 16.0 | 98 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 44200.0 | 1700.0 | 26 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 14000.0 | 1000.0 | 14 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1111.0 | 13.0 | 84 | 24.0 | 12.0 | ||
| Vareebadd Phone | 3600.0 | 400.0 | 9 | 400.0 | 400.0 | ||
| Wired Headphones | 1079.0 | 14.0 | 79 | 36.0 | 12.0 | ||
| iPhone | 21700.0 | 700.0 | 31 | 700.0 | 700.0 | ||
| 8 | 20in Monitor | 1540.0 | 110.0 | 14 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 8580.0 | 390.0 | 22 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 3600.0 | 157.0 | 23 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 7220.0 | 380.0 | 19 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 384.0 | 5.0 | 73 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 380.0 | 5.0 | 83 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 7650.0 | 150.0 | 51 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 3900.0 | 100.0 | 39 | 100.0 | 100.0 | ||
| Flatscreen TV | 4200.0 | 300.0 | 14 | 300.0 | 300.0 | ||
| Google Phone | 12000.0 | 600.0 | 20 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1286.0 | 16.0 | 81 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 30600.0 | 1700.0 | 18 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 16000.0 | 1000.0 | 16 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 920.0 | 13.0 | 70 | 36.0 | 12.0 | ||
| Vareebadd Phone | 5600.0 | 400.0 | 14 | 400.0 | 400.0 | ||
| Wired Headphones | 755.0 | 12.0 | 61 | 24.0 | 12.0 | ||
| iPhone | 17500.0 | 700.0 | 25 | 700.0 | 700.0 | ||
| 9 | 20in Monitor | 1980.0 | 110.0 | 18 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 7410.0 | 390.0 | 19 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4050.0 | 150.0 | 27 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 6840.0 | 380.0 | 18 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 369.0 | 6.0 | 66 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 356.0 | 5.0 | 75 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 7950.0 | 150.0 | 53 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 5399.0 | 102.0 | 53 | 200.0 | 100.0 | ||
| Flatscreen TV | 4500.0 | 300.0 | 15 | 300.0 | 300.0 | ||
| Google Phone | 12600.0 | 600.0 | 21 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1181.0 | 16.0 | 75 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 18700.0 | 1700.0 | 11 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 12000.0 | 1000.0 | 12 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1326.0 | 14.0 | 97 | 36.0 | 12.0 | ||
| Vareebadd Phone | 2000.0 | 400.0 | 5 | 400.0 | 400.0 | ||
| Wired Headphones | 923.0 | 13.0 | 70 | 24.0 | 12.0 | ||
| iPhone | 14700.0 | 700.0 | 21 | 700.0 | 700.0 | ||
| Boston(MA) | 1 | 20in Monitor | 2310.0 | 110.0 | 21 | 110.0 | 110.0 |
| 27in 4K Gaming Monitor | 11310.0 | 390.0 | 29 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6300.0 | 150.0 | 42 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 12160.0 | 380.0 | 32 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 599.0 | 5.0 | 115 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 508.0 | 4.0 | 119 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 13350.0 | 152.0 | 88 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 9099.0 | 100.0 | 91 | 100.0 | 100.0 | ||
| Flatscreen TV | 9300.0 | 300.0 | 31 | 300.0 | 300.0 | ||
| Google Phone | 19800.0 | 600.0 | 33 | 600.0 | 600.0 | ||
| LG Dryer | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1809.0 | 16.0 | 111 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 52700.0 | 1700.0 | 31 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 19000.0 | 1000.0 | 19 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1494.0 | 13.0 | 117 | 24.0 | 12.0 | ||
| Vareebadd Phone | 4000.0 | 400.0 | 10 | 400.0 | 400.0 | ||
| Wired Headphones | 1451.0 | 13.0 | 109 | 36.0 | 12.0 | ||
| iPhone | 28700.0 | 700.0 | 41 | 700.0 | 700.0 | ||
| 10 | 20in Monitor | 4950.0 | 110.0 | 45 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 33929.0 | 390.0 | 87 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 13349.0 | 150.0 | 89 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 19759.0 | 380.0 | 52 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1267.0 | 5.0 | 247 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1184.0 | 4.0 | 267 | 24.0 | 3.0 | ||
| Apple Airpods Headphones | 25950.0 | 150.0 | 173 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 14499.0 | 103.0 | 141 | 200.0 | 100.0 | ||
| Flatscreen TV | 18600.0 | 300.0 | 62 | 300.0 | 300.0 | ||
| Google Phone | 36600.0 | 600.0 | 61 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 6000.0 | 600.0 | 10 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 4111.0 | 16.0 | 260 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 76500.0 | 1700.0 | 45 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 50000.0 | 1020.0 | 49 | 2000.0 | 1000.0 | ||
| USB-C Charging Cable | 3597.0 | 13.0 | 277 | 36.0 | 12.0 | ||
| Vareebadd Phone | 8000.0 | 400.0 | 20 | 400.0 | 400.0 | ||
| Wired Headphones | 2842.0 | 13.0 | 224 | 24.0 | 12.0 | ||
| iPhone | 44100.0 | 700.0 | 63 | 700.0 | 700.0 | ||
| 11 | 20in Monitor | 4620.0 | 110.0 | 42 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 23009.0 | 390.0 | 59 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 11249.0 | 150.0 | 75 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 26979.0 | 380.0 | 71 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1167.0 | 5.0 | 222 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 963.0 | 4.0 | 218 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 21600.0 | 151.0 | 143 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 13899.0 | 102.0 | 136 | 200.0 | 100.0 | ||
| Flatscreen TV | 17400.0 | 300.0 | 58 | 300.0 | 300.0 | ||
| Google Phone | 28800.0 | 600.0 | 48 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3842.0 | 17.0 | 230 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 86700.0 | 1700.0 | 51 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 40000.0 | 1000.0 | 40 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2808.0 | 13.0 | 220 | 36.0 | 12.0 | ||
| Vareebadd Phone | 6000.0 | 400.0 | 15 | 400.0 | 400.0 | ||
| Wired Headphones | 2710.0 | 13.0 | 204 | 36.0 | 12.0 | ||
| iPhone | 53200.0 | 700.0 | 76 | 700.0 | 700.0 | ||
| 12 | 20in Monitor | 6709.0 | 110.0 | 61 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 42509.0 | 394.0 | 108 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 15449.0 | 150.0 | 103 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 35719.0 | 380.0 | 94 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1432.0 | 5.0 | 287 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1372.0 | 5.0 | 302 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 33000.0 | 152.0 | 217 | 450.0 | 150.0 | ||
| Bose SoundSport Headphones | 19898.0 | 100.0 | 199 | 100.0 | 100.0 | ||
| Flatscreen TV | 21000.0 | 304.0 | 69 | 600.0 | 300.0 | ||
| Google Phone | 43200.0 | 600.0 | 72 | 600.0 | 600.0 | ||
| LG Dryer | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| LG Washing Machine | 6000.0 | 600.0 | 10 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 5307.0 | 16.0 | 331 | 60.0 | 15.0 | ||
| Macbook Pro Laptop | 119000.0 | 1700.0 | 70 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 60999.0 | 1000.0 | 61 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 4266.0 | 13.0 | 323 | 36.0 | 12.0 | ||
| Vareebadd Phone | 12000.0 | 400.0 | 30 | 400.0 | 400.0 | ||
| Wired Headphones | 3237.0 | 13.0 | 245 | 36.0 | 12.0 | ||
| iPhone | 74900.0 | 700.0 | 107 | 700.0 | 700.0 | ||
| 2 | 20in Monitor | 2310.0 | 110.0 | 21 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 19110.0 | 390.0 | 49 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6900.0 | 150.0 | 46 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 18620.0 | 388.0 | 48 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 707.0 | 6.0 | 127 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 598.0 | 4.0 | 146 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 17850.0 | 150.0 | 119 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 9499.0 | 100.0 | 95 | 100.0 | 100.0 | ||
| Flatscreen TV | 12000.0 | 300.0 | 40 | 300.0 | 300.0 | ||
| Google Phone | 22200.0 | 600.0 | 37 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2198.0 | 16.0 | 139 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 25500.0 | 1700.0 | 15 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 27000.0 | 1000.0 | 27 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1804.0 | 13.0 | 137 | 24.0 | 12.0 | ||
| Vareebadd Phone | 8400.0 | 400.0 | 21 | 400.0 | 400.0 | ||
| Wired Headphones | 1715.0 | 13.0 | 132 | 24.0 | 12.0 | ||
| iPhone | 33600.0 | 700.0 | 48 | 700.0 | 700.0 | ||
| 3 | 20in Monitor | 2860.0 | 110.0 | 26 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 18720.0 | 390.0 | 48 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 8849.0 | 150.0 | 59 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 19000.0 | 380.0 | 50 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 945.0 | 5.0 | 180 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 864.0 | 5.0 | 182 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 21450.0 | 151.0 | 142 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 15198.0 | 102.0 | 149 | 200.0 | 100.0 | ||
| Flatscreen TV | 14700.0 | 306.0 | 48 | 600.0 | 300.0 | ||
| Google Phone | 34800.0 | 600.0 | 58 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2855.0 | 16.0 | 179 | 60.0 | 15.0 | ||
| Macbook Pro Laptop | 59500.0 | 1700.0 | 35 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 48000.0 | 1000.0 | 48 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2533.0 | 13.0 | 191 | 48.0 | 12.0 | ||
| Vareebadd Phone | 8000.0 | 400.0 | 20 | 400.0 | 400.0 | ||
| Wired Headphones | 2350.0 | 14.0 | 171 | 36.0 | 12.0 | ||
| iPhone | 35000.0 | 700.0 | 50 | 700.0 | 700.0 | ||
| 4 | 20in Monitor | 3520.0 | 110.0 | 32 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 22619.0 | 390.0 | 58 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 14399.0 | 153.0 | 94 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 25459.0 | 386.0 | 66 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 1206.0 | 5.0 | 225 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1038.0 | 5.0 | 225 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 21900.0 | 150.0 | 146 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 11499.0 | 100.0 | 115 | 100.0 | 100.0 | ||
| Flatscreen TV | 12900.0 | 300.0 | 43 | 300.0 | 300.0 | ||
| Google Phone | 37800.0 | 600.0 | 63 | 600.0 | 600.0 | ||
| LG Dryer | 4800.0 | 600.0 | 8 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3782.0 | 16.0 | 234 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 73100.0 | 1700.0 | 43 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 47000.0 | 1000.0 | 47 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2952.0 | 13.0 | 228 | 36.0 | 12.0 | ||
| Vareebadd Phone | 9600.0 | 400.0 | 24 | 400.0 | 400.0 | ||
| Wired Headphones | 2434.0 | 13.0 | 183 | 36.0 | 12.0 | ||
| iPhone | 56000.0 | 700.0 | 80 | 700.0 | 700.0 | ||
| 5 | 20in Monitor | 3960.0 | 110.0 | 36 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 23399.0 | 390.0 | 60 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 10649.0 | 150.0 | 71 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 25839.0 | 380.0 | 68 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 925.0 | 5.0 | 185 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 915.0 | 4.0 | 216 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 23850.0 | 151.0 | 158 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 12199.0 | 100.0 | 122 | 100.0 | 100.0 | ||
| Flatscreen TV | 16500.0 | 300.0 | 55 | 300.0 | 300.0 | ||
| Google Phone | 31200.0 | 600.0 | 52 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3364.0 | 16.0 | 216 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 68000.0 | 1744.0 | 39 | 3400.0 | 1700.0 | ||
| ThinkPad Laptop | 41000.0 | 1000.0 | 41 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2486.0 | 13.0 | 194 | 36.0 | 12.0 | ||
| Vareebadd Phone | 6400.0 | 400.0 | 16 | 400.0 | 400.0 | ||
| Wired Headphones | 2518.0 | 13.0 | 196 | 36.0 | 12.0 | ||
| iPhone | 49000.0 | 700.0 | 70 | 700.0 | 700.0 | ||
| 6 | 20in Monitor | 3300.0 | 110.0 | 30 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 17550.0 | 390.0 | 45 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 8849.0 | 153.0 | 58 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 18240.0 | 380.0 | 48 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 929.0 | 6.0 | 167 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 736.0 | 5.0 | 152 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 18450.0 | 151.0 | 122 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 9499.0 | 102.0 | 93 | 200.0 | 100.0 | ||
| Flatscreen TV | 11400.0 | 308.0 | 37 | 600.0 | 300.0 | ||
| Google Phone | 22200.0 | 600.0 | 37 | 600.0 | 600.0 | ||
| LG Dryer | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Washing Machine | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2646.0 | 16.0 | 164 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 57800.0 | 1700.0 | 34 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 29000.0 | 1000.0 | 29 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2008.0 | 14.0 | 147 | 36.0 | 12.0 | ||
| Vareebadd Phone | 6800.0 | 400.0 | 17 | 400.0 | 400.0 | ||
| Wired Headphones | 1942.0 | 13.0 | 146 | 24.0 | 12.0 | ||
| iPhone | 35000.0 | 700.0 | 50 | 700.0 | 700.0 | ||
| 7 | 20in Monitor | 3630.0 | 110.0 | 33 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 18330.0 | 390.0 | 47 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 9599.0 | 150.0 | 64 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 15960.0 | 380.0 | 42 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 941.0 | 6.0 | 165 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 807.0 | 5.0 | 179 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 20100.0 | 151.0 | 133 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 9599.0 | 100.0 | 96 | 100.0 | 100.0 | ||
| Flatscreen TV | 11700.0 | 300.0 | 39 | 300.0 | 300.0 | ||
| Google Phone | 29400.0 | 600.0 | 49 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3184.0 | 16.0 | 195 | 60.0 | 15.0 | ||
| Macbook Pro Laptop | 81600.0 | 1700.0 | 48 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 29000.0 | 1000.0 | 29 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2510.0 | 13.0 | 193 | 36.0 | 12.0 | ||
| Vareebadd Phone | 5600.0 | 400.0 | 14 | 400.0 | 400.0 | ||
| Wired Headphones | 2038.0 | 13.0 | 158 | 36.0 | 12.0 | ||
| iPhone | 42700.0 | 700.0 | 61 | 700.0 | 700.0 | ||
| 8 | 20in Monitor | 2530.0 | 110.0 | 23 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 17550.0 | 399.0 | 44 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 7200.0 | 150.0 | 48 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 22039.0 | 380.0 | 58 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 691.0 | 5.0 | 141 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 679.0 | 5.0 | 144 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 15300.0 | 153.0 | 100 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 7699.0 | 103.0 | 75 | 200.0 | 100.0 | ||
| Flatscreen TV | 11700.0 | 300.0 | 39 | 300.0 | 300.0 | ||
| Google Phone | 23400.0 | 616.0 | 38 | 1200.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1973.0 | 16.0 | 124 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 44200.0 | 1700.0 | 26 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 30000.0 | 1000.0 | 30 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1864.0 | 13.0 | 141 | 36.0 | 12.0 | ||
| Vareebadd Phone | 5600.0 | 400.0 | 14 | 400.0 | 400.0 | ||
| Wired Headphones | 1751.0 | 13.0 | 133 | 36.0 | 12.0 | ||
| iPhone | 38500.0 | 700.0 | 55 | 700.0 | 700.0 | ||
| 9 | 20in Monitor | 2640.0 | 110.0 | 24 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 15210.0 | 390.0 | 39 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6750.0 | 153.0 | 44 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 15200.0 | 380.0 | 40 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 772.0 | 5.0 | 154 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 685.0 | 5.0 | 151 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 15150.0 | 150.0 | 101 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 8999.0 | 100.0 | 90 | 100.0 | 100.0 | ||
| Flatscreen TV | 9000.0 | 300.0 | 30 | 300.0 | 300.0 | ||
| Google Phone | 26400.0 | 600.0 | 44 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2168.0 | 15.0 | 140 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 69700.0 | 1700.0 | 41 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 26000.0 | 1000.0 | 26 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2282.0 | 14.0 | 165 | 36.0 | 12.0 | ||
| Vareebadd Phone | 5200.0 | 400.0 | 13 | 400.0 | 400.0 | ||
| Wired Headphones | 1655.0 | 13.0 | 124 | 36.0 | 12.0 | ||
| iPhone | 36400.0 | 714.0 | 51 | 1400.0 | 700.0 | ||
| Dallas(TX) | 1 | 20in Monitor | 2420.0 | 110.0 | 22 | 110.0 | 110.0 |
| 27in 4K Gaming Monitor | 10530.0 | 390.0 | 27 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4500.0 | 150.0 | 30 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 10260.0 | 380.0 | 27 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 538.0 | 5.0 | 103 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 392.0 | 4.0 | 93 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 8700.0 | 150.0 | 58 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 5299.0 | 102.0 | 52 | 200.0 | 100.0 | ||
| Flatscreen TV | 7200.0 | 300.0 | 24 | 300.0 | 300.0 | ||
| Google Phone | 19200.0 | 600.0 | 32 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1331.0 | 16.0 | 83 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 30600.0 | 1700.0 | 18 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 19000.0 | 1000.0 | 19 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1135.0 | 13.0 | 89 | 36.0 | 12.0 | ||
| Vareebadd Phone | 2000.0 | 400.0 | 5 | 400.0 | 400.0 | ||
| Wired Headphones | 959.0 | 13.0 | 74 | 24.0 | 12.0 | ||
| iPhone | 18200.0 | 700.0 | 26 | 700.0 | 700.0 | ||
| 10 | 20in Monitor | 4840.0 | 110.0 | 44 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 21059.0 | 397.0 | 53 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 10499.0 | 152.0 | 69 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 23559.0 | 380.0 | 62 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 883.0 | 5.0 | 177 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 688.0 | 4.0 | 153 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 23100.0 | 152.0 | 152 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 11099.0 | 100.0 | 111 | 100.0 | 100.0 | ||
| Flatscreen TV | 10800.0 | 300.0 | 36 | 300.0 | 300.0 | ||
| Google Phone | 37800.0 | 600.0 | 63 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2781.0 | 16.0 | 176 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 73100.0 | 1700.0 | 43 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 44000.0 | 1000.0 | 44 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2450.0 | 13.0 | 191 | 36.0 | 12.0 | ||
| Vareebadd Phone | 11600.0 | 400.0 | 29 | 400.0 | 400.0 | ||
| Wired Headphones | 2278.0 | 13.0 | 174 | 36.0 | 12.0 | ||
| iPhone | 37800.0 | 700.0 | 54 | 700.0 | 700.0 | ||
| 11 | 20in Monitor | 3080.0 | 110.0 | 28 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 19889.0 | 390.0 | 51 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6450.0 | 161.0 | 40 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 11020.0 | 380.0 | 29 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 902.0 | 5.0 | 182 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 801.0 | 5.0 | 171 | 24.0 | 3.0 | ||
| Apple Airpods Headphones | 15150.0 | 150.0 | 101 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 8899.0 | 100.0 | 89 | 100.0 | 100.0 | ||
| Flatscreen TV | 10800.0 | 300.0 | 36 | 300.0 | 300.0 | ||
| Google Phone | 18000.0 | 600.0 | 30 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2437.0 | 17.0 | 147 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 68000.0 | 1700.0 | 40 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 28000.0 | 1000.0 | 28 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2067.0 | 13.0 | 164 | 24.0 | 12.0 | ||
| Vareebadd Phone | 5200.0 | 400.0 | 13 | 400.0 | 400.0 | ||
| Wired Headphones | 2014.0 | 13.0 | 152 | 36.0 | 12.0 | ||
| iPhone | 39900.0 | 700.0 | 57 | 700.0 | 700.0 | ||
| 12 | 20in Monitor | 4070.0 | 110.0 | 37 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 28469.0 | 390.0 | 73 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 11249.0 | 150.0 | 75 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 27739.0 | 380.0 | 73 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1121.0 | 5.0 | 215 | 27.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1184.0 | 5.0 | 257 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 23550.0 | 153.0 | 154 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 13699.0 | 103.0 | 133 | 200.0 | 100.0 | ||
| Flatscreen TV | 21900.0 | 300.0 | 73 | 300.0 | 300.0 | ||
| Google Phone | 30600.0 | 600.0 | 51 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3872.0 | 16.0 | 235 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 90100.0 | 1700.0 | 53 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 48000.0 | 1000.0 | 48 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2820.0 | 13.0 | 210 | 36.0 | 12.0 | ||
| Vareebadd Phone | 12000.0 | 400.0 | 30 | 400.0 | 400.0 | ||
| Wired Headphones | 2746.0 | 13.0 | 206 | 48.0 | 12.0 | ||
| iPhone | 50400.0 | 700.0 | 72 | 700.0 | 700.0 | ||
| 2 | 20in Monitor | 1870.0 | 110.0 | 17 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 8580.0 | 390.0 | 22 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 5700.0 | 154.0 | 37 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 17100.0 | 389.0 | 44 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 595.0 | 5.0 | 113 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 484.0 | 5.0 | 107 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 11550.0 | 150.0 | 77 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 6099.0 | 100.0 | 61 | 100.0 | 100.0 | ||
| Flatscreen TV | 9300.0 | 300.0 | 31 | 300.0 | 300.0 | ||
| Google Phone | 22200.0 | 600.0 | 37 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1914.0 | 16.0 | 119 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 37400.0 | 1700.0 | 22 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 24000.0 | 1000.0 | 24 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1434.0 | 13.0 | 111 | 36.0 | 12.0 | ||
| Vareebadd Phone | 6400.0 | 400.0 | 16 | 400.0 | 400.0 | ||
| Wired Headphones | 1343.0 | 13.0 | 101 | 24.0 | 12.0 | ||
| iPhone | 25900.0 | 700.0 | 37 | 700.0 | 700.0 | ||
| 3 | 20in Monitor | 2200.0 | 110.0 | 20 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 16770.0 | 390.0 | 43 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 9449.0 | 152.0 | 62 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 17480.0 | 380.0 | 46 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 722.0 | 5.0 | 141 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 502.0 | 5.0 | 109 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 14850.0 | 152.0 | 98 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 10599.0 | 100.0 | 106 | 100.0 | 100.0 | ||
| Flatscreen TV | 8400.0 | 300.0 | 28 | 300.0 | 300.0 | ||
| Google Phone | 27600.0 | 600.0 | 46 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2242.0 | 16.0 | 138 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 52700.0 | 1700.0 | 31 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 19000.0 | 1000.0 | 19 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1876.0 | 13.0 | 139 | 36.0 | 12.0 | ||
| Vareebadd Phone | 7200.0 | 400.0 | 18 | 400.0 | 400.0 | ||
| Wired Headphones | 1487.0 | 13.0 | 114 | 36.0 | 12.0 | ||
| iPhone | 24500.0 | 700.0 | 35 | 700.0 | 700.0 | ||
| 4 | 20in Monitor | 4180.0 | 113.0 | 37 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 16380.0 | 390.0 | 42 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6900.0 | 150.0 | 46 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 16340.0 | 380.0 | 43 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 887.0 | 5.0 | 167 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 574.0 | 4.0 | 136 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 16050.0 | 150.0 | 107 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 10299.0 | 100.0 | 103 | 100.0 | 100.0 | ||
| Flatscreen TV | 10200.0 | 300.0 | 34 | 300.0 | 300.0 | ||
| Google Phone | 21000.0 | 600.0 | 35 | 600.0 | 600.0 | ||
| LG Dryer | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2766.0 | 17.0 | 167 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 54400.0 | 1700.0 | 32 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 31000.0 | 1000.0 | 31 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1876.0 | 13.0 | 143 | 24.0 | 12.0 | ||
| Vareebadd Phone | 7600.0 | 400.0 | 19 | 400.0 | 400.0 | ||
| Wired Headphones | 1810.0 | 13.0 | 135 | 36.0 | 12.0 | ||
| iPhone | 41300.0 | 700.0 | 59 | 700.0 | 700.0 | ||
| 5 | 20in Monitor | 3520.0 | 114.0 | 31 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 15210.0 | 390.0 | 39 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 8249.0 | 150.0 | 55 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 19759.0 | 380.0 | 52 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 764.0 | 5.0 | 162 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 855.0 | 5.0 | 173 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 13050.0 | 150.0 | 87 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 10999.0 | 102.0 | 108 | 200.0 | 100.0 | ||
| Flatscreen TV | 9900.0 | 300.0 | 33 | 300.0 | 300.0 | ||
| Google Phone | 19800.0 | 600.0 | 33 | 600.0 | 600.0 | ||
| LG Dryer | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2826.0 | 16.0 | 178 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 79900.0 | 1700.0 | 47 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 39000.0 | 1000.0 | 39 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2259.0 | 13.0 | 173 | 36.0 | 12.0 | ||
| Vareebadd Phone | 2400.0 | 400.0 | 6 | 400.0 | 400.0 | ||
| Wired Headphones | 1966.0 | 13.0 | 149 | 36.0 | 12.0 | ||
| iPhone | 30800.0 | 700.0 | 44 | 700.0 | 700.0 | ||
| 6 | 20in Monitor | 3740.0 | 110.0 | 34 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 12480.0 | 390.0 | 32 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 5550.0 | 154.0 | 36 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 11400.0 | 380.0 | 30 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 584.0 | 5.0 | 110 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 457.0 | 4.0 | 106 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 16200.0 | 151.0 | 107 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 7299.0 | 100.0 | 73 | 100.0 | 100.0 | ||
| Flatscreen TV | 9300.0 | 300.0 | 31 | 300.0 | 300.0 | ||
| Google Phone | 16800.0 | 600.0 | 28 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2213.0 | 16.0 | 136 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 39100.0 | 1700.0 | 23 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 18000.0 | 1000.0 | 18 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1554.0 | 13.0 | 119 | 36.0 | 12.0 | ||
| Vareebadd Phone | 6000.0 | 400.0 | 15 | 400.0 | 400.0 | ||
| Wired Headphones | 1511.0 | 13.0 | 115 | 24.0 | 12.0 | ||
| iPhone | 32900.0 | 700.0 | 47 | 700.0 | 700.0 | ||
| 7 | 20in Monitor | 2750.0 | 115.0 | 24 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 13260.0 | 390.0 | 34 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6900.0 | 150.0 | 46 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 13680.0 | 380.0 | 36 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 664.0 | 5.0 | 122 | 27.0 | 4.0 | ||
| AAA Batteries (4-pack) | 508.0 | 4.0 | 117 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 13350.0 | 150.0 | 89 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 8199.0 | 100.0 | 82 | 100.0 | 100.0 | ||
| Flatscreen TV | 12000.0 | 308.0 | 39 | 600.0 | 300.0 | ||
| Google Phone | 24000.0 | 600.0 | 40 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2003.0 | 16.0 | 126 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 52700.0 | 1700.0 | 31 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 28000.0 | 1000.0 | 28 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1685.0 | 13.0 | 128 | 24.0 | 12.0 | ||
| Vareebadd Phone | 2400.0 | 400.0 | 6 | 400.0 | 400.0 | ||
| Wired Headphones | 1427.0 | 13.0 | 112 | 24.0 | 12.0 | ||
| iPhone | 25200.0 | 700.0 | 36 | 700.0 | 700.0 | ||
| 8 | 20in Monitor | 2750.0 | 110.0 | 25 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 11700.0 | 390.0 | 30 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6750.0 | 150.0 | 45 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 12540.0 | 380.0 | 33 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 503.0 | 5.0 | 100 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 556.0 | 5.0 | 113 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 12450.0 | 150.0 | 83 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 7099.0 | 101.0 | 70 | 200.0 | 100.0 | ||
| Flatscreen TV | 8400.0 | 300.0 | 28 | 300.0 | 300.0 | ||
| Google Phone | 19200.0 | 600.0 | 32 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1884.0 | 16.0 | 119 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 39100.0 | 1700.0 | 23 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 30000.0 | 1000.0 | 30 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1458.0 | 13.0 | 108 | 24.0 | 12.0 | ||
| Vareebadd Phone | 3200.0 | 400.0 | 8 | 400.0 | 400.0 | ||
| Wired Headphones | 1175.0 | 13.0 | 90 | 36.0 | 12.0 | ||
| iPhone | 16800.0 | 700.0 | 24 | 700.0 | 700.0 | ||
| 9 | 20in Monitor | 2310.0 | 110.0 | 21 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 13260.0 | 402.0 | 33 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 5850.0 | 150.0 | 39 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 13680.0 | 380.0 | 36 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 518.0 | 5.0 | 101 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 484.0 | 4.0 | 115 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 11100.0 | 150.0 | 74 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 6699.0 | 100.0 | 67 | 100.0 | 100.0 | ||
| Flatscreen TV | 7800.0 | 300.0 | 26 | 300.0 | 300.0 | ||
| Google Phone | 20400.0 | 600.0 | 34 | 600.0 | 600.0 | ||
| LG Dryer | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1600.0 | 17.0 | 96 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 32300.0 | 1700.0 | 19 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 17000.0 | 1000.0 | 17 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1518.0 | 13.0 | 116 | 36.0 | 12.0 | ||
| Vareebadd Phone | 5200.0 | 400.0 | 13 | 400.0 | 400.0 | ||
| Wired Headphones | 1295.0 | 14.0 | 93 | 36.0 | 12.0 | ||
| iPhone | 19600.0 | 700.0 | 28 | 700.0 | 700.0 | ||
| Los Angeles(CA) | 1 | 20in Monitor | 3740.0 | 113.0 | 33 | 220.0 | 110.0 |
| 27in 4K Gaming Monitor | 18720.0 | 390.0 | 48 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 11399.0 | 150.0 | 76 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 22039.0 | 380.0 | 58 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 829.0 | 5.0 | 160 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 768.0 | 4.0 | 172 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 17400.0 | 150.0 | 116 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 9699.0 | 101.0 | 96 | 200.0 | 100.0 | ||
| Flatscreen TV | 12300.0 | 300.0 | 41 | 300.0 | 300.0 | ||
| Google Phone | 27000.0 | 614.0 | 44 | 1200.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2736.0 | 17.0 | 165 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 66300.0 | 1700.0 | 39 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 39000.0 | 1000.0 | 39 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2533.0 | 13.0 | 197 | 36.0 | 12.0 | ||
| Vareebadd Phone | 8800.0 | 400.0 | 22 | 400.0 | 400.0 | ||
| Wired Headphones | 2038.0 | 13.0 | 160 | 24.0 | 12.0 | ||
| iPhone | 38500.0 | 700.0 | 55 | 700.0 | 700.0 | ||
| 10 | 20in Monitor | 6709.0 | 110.0 | 61 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 43289.0 | 390.0 | 111 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 18149.0 | 150.0 | 121 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 37239.0 | 380.0 | 98 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1851.0 | 5.0 | 365 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1746.0 | 5.0 | 381 | 24.0 | 3.0 | ||
| Apple Airpods Headphones | 43050.0 | 151.0 | 286 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 25397.0 | 102.0 | 250 | 200.0 | 100.0 | ||
| Flatscreen TV | 22500.0 | 304.0 | 74 | 600.0 | 300.0 | ||
| Google Phone | 55800.0 | 600.0 | 93 | 600.0 | 600.0 | ||
| LG Dryer | 7800.0 | 600.0 | 13 | 600.0 | 600.0 | ||
| LG Washing Machine | 6600.0 | 600.0 | 11 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 6384.0 | 16.0 | 398 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 159800.0 | 1700.0 | 94 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 73999.0 | 1000.0 | 74 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 4864.0 | 14.0 | 359 | 48.0 | 12.0 | ||
| Vareebadd Phone | 10000.0 | 400.0 | 25 | 400.0 | 400.0 | ||
| Wired Headphones | 4676.0 | 13.0 | 364 | 36.0 | 12.0 | ||
| iPhone | 82600.0 | 700.0 | 118 | 700.0 | 700.0 | ||
| 11 | 20in Monitor | 6049.0 | 110.0 | 55 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 36659.0 | 390.0 | 94 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 18449.0 | 152.0 | 121 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 33059.0 | 380.0 | 87 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1674.0 | 5.0 | 319 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1423.0 | 5.0 | 310 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 36000.0 | 151.0 | 238 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 18698.0 | 102.0 | 183 | 200.0 | 100.0 | ||
| Flatscreen TV | 19200.0 | 305.0 | 63 | 600.0 | 300.0 | ||
| Google Phone | 49200.0 | 600.0 | 82 | 600.0 | 600.0 | ||
| LG Dryer | 6600.0 | 600.0 | 11 | 600.0 | 600.0 | ||
| LG Washing Machine | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 5247.0 | 16.0 | 321 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 110500.0 | 1700.0 | 65 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 57999.0 | 1000.0 | 58 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 4075.0 | 13.0 | 308 | 48.0 | 12.0 | ||
| Vareebadd Phone | 12800.0 | 400.0 | 32 | 400.0 | 400.0 | ||
| Wired Headphones | 3657.0 | 13.0 | 286 | 36.0 | 12.0 | ||
| iPhone | 74200.0 | 700.0 | 106 | 700.0 | 700.0 | ||
| 12 | 20in Monitor | 10999.0 | 110.0 | 100 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 54989.0 | 390.0 | 141 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 21749.0 | 151.0 | 144 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 51679.0 | 383.0 | 135 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 2350.0 | 5.0 | 445 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1809.0 | 4.0 | 407 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 50400.0 | 151.0 | 334 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 29797.0 | 102.0 | 293 | 200.0 | 100.0 | ||
| Flatscreen TV | 29100.0 | 303.0 | 96 | 600.0 | 300.0 | ||
| Google Phone | 53400.0 | 607.0 | 88 | 1200.0 | 600.0 | ||
| LG Dryer | 8400.0 | 600.0 | 14 | 600.0 | 600.0 | ||
| LG Washing Machine | 4800.0 | 600.0 | 8 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 7460.0 | 16.0 | 463 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 141100.0 | 1700.0 | 83 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 78999.0 | 1000.0 | 79 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 5939.0 | 13.0 | 460 | 36.0 | 12.0 | ||
| Vareebadd Phone | 18000.0 | 400.0 | 45 | 400.0 | 400.0 | ||
| Wired Headphones | 5276.0 | 13.0 | 410 | 36.0 | 12.0 | ||
| iPhone | 107800.0 | 700.0 | 154 | 700.0 | 700.0 | ||
| 2 | 20in Monitor | 4840.0 | 110.0 | 44 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 27299.0 | 390.0 | 70 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 12149.0 | 152.0 | 80 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 23939.0 | 380.0 | 63 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1125.0 | 5.0 | 219 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1049.0 | 4.0 | 234 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 21000.0 | 150.0 | 140 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 12999.0 | 102.0 | 128 | 200.0 | 100.0 | ||
| Flatscreen TV | 10800.0 | 300.0 | 36 | 300.0 | 300.0 | ||
| Google Phone | 31200.0 | 612.0 | 51 | 1200.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3633.0 | 16.0 | 222 | 60.0 | 15.0 | ||
| Macbook Pro Laptop | 78200.0 | 1700.0 | 46 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 42000.0 | 1000.0 | 42 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3250.0 | 14.0 | 240 | 36.0 | 12.0 | ||
| Vareebadd Phone | 10000.0 | 400.0 | 25 | 400.0 | 400.0 | ||
| Wired Headphones | 2278.0 | 13.0 | 178 | 24.0 | 12.0 | ||
| iPhone | 49700.0 | 700.0 | 71 | 700.0 | 700.0 | ||
| 3 | 20in Monitor | 6269.0 | 112.0 | 56 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 27689.0 | 390.0 | 71 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 13949.0 | 150.0 | 93 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 29639.0 | 380.0 | 78 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1409.0 | 5.0 | 280 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1325.0 | 5.0 | 290 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 29400.0 | 152.0 | 194 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 17498.0 | 101.0 | 173 | 200.0 | 100.0 | ||
| Flatscreen TV | 15000.0 | 300.0 | 50 | 300.0 | 300.0 | ||
| Google Phone | 45600.0 | 600.0 | 76 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 6600.0 | 600.0 | 11 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 4649.0 | 16.0 | 293 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 108800.0 | 1700.0 | 64 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 49000.0 | 1000.0 | 49 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3764.0 | 13.0 | 294 | 36.0 | 12.0 | ||
| Vareebadd Phone | 8800.0 | 400.0 | 22 | 400.0 | 400.0 | ||
| Wired Headphones | 3537.0 | 13.0 | 280 | 24.0 | 12.0 | ||
| iPhone | 54600.0 | 700.0 | 78 | 700.0 | 700.0 | ||
| 4 | 20in Monitor | 7149.0 | 112.0 | 64 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 35879.0 | 390.0 | 92 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 17249.0 | 150.0 | 115 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 36859.0 | 380.0 | 97 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1782.0 | 5.0 | 335 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1534.0 | 4.0 | 347 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 38700.0 | 152.0 | 254 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 20498.0 | 100.0 | 204 | 200.0 | 100.0 | ||
| Flatscreen TV | 20700.0 | 300.0 | 69 | 300.0 | 300.0 | ||
| Google Phone | 66000.0 | 600.0 | 110 | 600.0 | 600.0 | ||
| LG Dryer | 10200.0 | 600.0 | 17 | 600.0 | 600.0 | ||
| LG Washing Machine | 9000.0 | 600.0 | 15 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 5965.0 | 16.0 | 380 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 117300.0 | 1700.0 | 69 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 65999.0 | 1000.0 | 66 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 4541.0 | 13.0 | 351 | 36.0 | 12.0 | ||
| Vareebadd Phone | 12800.0 | 400.0 | 32 | 400.0 | 400.0 | ||
| Wired Headphones | 3909.0 | 13.0 | 303 | 36.0 | 12.0 | ||
| iPhone | 74200.0 | 707.0 | 105 | 1400.0 | 700.0 | ||
| 5 | 20in Monitor | 6709.0 | 112.0 | 60 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 34709.0 | 390.0 | 89 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 14999.0 | 150.0 | 100 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 27739.0 | 380.0 | 73 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1298.0 | 5.0 | 262 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1340.0 | 5.0 | 290 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 32550.0 | 152.0 | 214 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 19898.0 | 101.0 | 197 | 200.0 | 100.0 | ||
| Flatscreen TV | 22800.0 | 300.0 | 76 | 300.0 | 300.0 | ||
| Google Phone | 42000.0 | 600.0 | 70 | 600.0 | 600.0 | ||
| LG Dryer | 9600.0 | 600.0 | 16 | 600.0 | 600.0 | ||
| LG Washing Machine | 6600.0 | 600.0 | 11 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 4874.0 | 17.0 | 295 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 120700.0 | 1700.0 | 71 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 51999.0 | 1000.0 | 52 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3669.0 | 13.0 | 277 | 36.0 | 12.0 | ||
| Vareebadd Phone | 10800.0 | 400.0 | 27 | 400.0 | 400.0 | ||
| Wired Headphones | 3405.0 | 13.0 | 268 | 36.0 | 12.0 | ||
| iPhone | 84000.0 | 700.0 | 120 | 700.0 | 700.0 | ||
| 6 | 20in Monitor | 5500.0 | 110.0 | 50 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 31979.0 | 390.0 | 82 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 14699.0 | 153.0 | 96 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 28879.0 | 385.0 | 75 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 1302.0 | 5.0 | 247 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 948.0 | 4.0 | 224 | 27.0 | 3.0 | ||
| Apple Airpods Headphones | 27750.0 | 150.0 | 185 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 14499.0 | 101.0 | 144 | 200.0 | 100.0 | ||
| Flatscreen TV | 17100.0 | 300.0 | 57 | 300.0 | 300.0 | ||
| Google Phone | 34200.0 | 600.0 | 57 | 600.0 | 600.0 | ||
| LG Dryer | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Washing Machine | 6600.0 | 600.0 | 11 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3842.0 | 16.0 | 240 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 120700.0 | 1700.0 | 71 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 49000.0 | 1000.0 | 49 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3466.0 | 13.0 | 268 | 36.0 | 12.0 | ||
| Vareebadd Phone | 9200.0 | 400.0 | 23 | 400.0 | 400.0 | ||
| Wired Headphones | 2770.0 | 13.0 | 210 | 48.0 | 12.0 | ||
| iPhone | 74900.0 | 700.0 | 107 | 700.0 | 700.0 | ||
| 7 | 20in Monitor | 4510.0 | 110.0 | 41 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 28079.0 | 390.0 | 72 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 16199.0 | 150.0 | 108 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 23559.0 | 380.0 | 62 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1229.0 | 5.0 | 241 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1094.0 | 5.0 | 237 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 29250.0 | 152.0 | 192 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 16598.0 | 102.0 | 163 | 300.0 | 100.0 | ||
| Flatscreen TV | 18900.0 | 300.0 | 63 | 300.0 | 300.0 | ||
| Google Phone | 35400.0 | 600.0 | 59 | 600.0 | 600.0 | ||
| LG Dryer | 9000.0 | 600.0 | 15 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 4186.0 | 16.0 | 270 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 86700.0 | 1700.0 | 51 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 50999.0 | 1000.0 | 51 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3573.0 | 13.0 | 272 | 36.0 | 12.0 | ||
| Vareebadd Phone | 8000.0 | 400.0 | 20 | 400.0 | 400.0 | ||
| Wired Headphones | 3057.0 | 13.0 | 235 | 36.0 | 12.0 | ||
| iPhone | 50400.0 | 700.0 | 72 | 700.0 | 700.0 | ||
| 8 | 20in Monitor | 4400.0 | 110.0 | 40 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 26129.0 | 390.0 | 67 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 11849.0 | 150.0 | 79 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 21279.0 | 380.0 | 56 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1068.0 | 5.0 | 206 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 894.0 | 4.0 | 216 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 25050.0 | 153.0 | 164 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 13299.0 | 100.0 | 133 | 100.0 | 100.0 | ||
| Flatscreen TV | 14700.0 | 300.0 | 49 | 300.0 | 300.0 | ||
| Google Phone | 35400.0 | 600.0 | 59 | 600.0 | 600.0 | ||
| LG Dryer | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| LG Washing Machine | 5400.0 | 600.0 | 9 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3827.0 | 16.0 | 238 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 79900.0 | 1700.0 | 47 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 35000.0 | 1000.0 | 35 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2725.0 | 13.0 | 213 | 36.0 | 12.0 | ||
| Vareebadd Phone | 9600.0 | 400.0 | 24 | 400.0 | 400.0 | ||
| Wired Headphones | 2074.0 | 13.0 | 159 | 36.0 | 12.0 | ||
| iPhone | 49700.0 | 700.0 | 71 | 700.0 | 700.0 | ||
| 9 | 20in Monitor | 5500.0 | 110.0 | 50 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 25739.0 | 390.0 | 66 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 12599.0 | 150.0 | 84 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 26979.0 | 380.0 | 71 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1125.0 | 5.0 | 210 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 921.0 | 4.0 | 205 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 20400.0 | 151.0 | 135 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 13599.0 | 101.0 | 135 | 200.0 | 100.0 | ||
| Flatscreen TV | 15000.0 | 300.0 | 50 | 300.0 | 300.0 | ||
| Google Phone | 33600.0 | 600.0 | 56 | 600.0 | 600.0 | ||
| LG Dryer | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| LG Washing Machine | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3588.0 | 16.0 | 227 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 86700.0 | 1700.0 | 51 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 47000.0 | 1000.0 | 47 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2796.0 | 13.0 | 215 | 24.0 | 12.0 | ||
| Vareebadd Phone | 8000.0 | 400.0 | 20 | 400.0 | 400.0 | ||
| Wired Headphones | 2530.0 | 13.0 | 190 | 36.0 | 12.0 | ||
| iPhone | 42000.0 | 700.0 | 60 | 700.0 | 700.0 | ||
| New York City(NY) | 1 | 20in Monitor | 3190.0 | 110.0 | 29 | 110.0 | 110.0 |
| 27in 4K Gaming Monitor | 14430.0 | 390.0 | 37 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 8549.0 | 150.0 | 57 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 15200.0 | 380.0 | 40 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 657.0 | 6.0 | 119 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 765.0 | 5.0 | 156 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 16050.0 | 151.0 | 106 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 7299.0 | 101.0 | 72 | 200.0 | 100.0 | ||
| Flatscreen TV | 8400.0 | 300.0 | 28 | 300.0 | 300.0 | ||
| Google Phone | 25800.0 | 600.0 | 43 | 600.0 | 600.0 | ||
| LG Dryer | 4800.0 | 600.0 | 8 | 600.0 | 600.0 | ||
| LG Washing Machine | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2751.0 | 16.0 | 176 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 71400.0 | 1700.0 | 42 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 25000.0 | 1042.0 | 24 | 2000.0 | 1000.0 | ||
| USB-C Charging Cable | 2306.0 | 14.0 | 168 | 36.0 | 12.0 | ||
| Vareebadd Phone | 10400.0 | 416.0 | 25 | 800.0 | 400.0 | ||
| Wired Headphones | 1595.0 | 13.0 | 122 | 48.0 | 12.0 | ||
| iPhone | 37800.0 | 700.0 | 54 | 700.0 | 700.0 | ||
| 10 | 20in Monitor | 6929.0 | 110.0 | 63 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 32759.0 | 390.0 | 84 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 17549.0 | 150.0 | 117 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 41039.0 | 380.0 | 108 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1567.0 | 5.0 | 314 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1357.0 | 5.0 | 299 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 31350.0 | 150.0 | 209 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 17198.0 | 101.0 | 171 | 200.0 | 100.0 | ||
| Flatscreen TV | 22200.0 | 300.0 | 74 | 300.0 | 300.0 | ||
| Google Phone | 46200.0 | 600.0 | 77 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 4575.0 | 16.0 | 290 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 120700.0 | 1700.0 | 71 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 53999.0 | 1000.0 | 54 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 4266.0 | 13.0 | 336 | 36.0 | 12.0 | ||
| Vareebadd Phone | 13600.0 | 400.0 | 34 | 400.0 | 400.0 | ||
| Wired Headphones | 3165.0 | 13.0 | 247 | 36.0 | 12.0 | ||
| iPhone | 63700.0 | 700.0 | 91 | 700.0 | 700.0 | ||
| 11 | 20in Monitor | 6049.0 | 112.0 | 54 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 26909.0 | 390.0 | 69 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 13799.0 | 152.0 | 91 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 33439.0 | 380.0 | 88 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1279.0 | 5.0 | 246 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1211.0 | 5.0 | 268 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 33300.0 | 152.0 | 219 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 17398.0 | 101.0 | 172 | 200.0 | 100.0 | ||
| Flatscreen TV | 17400.0 | 300.0 | 58 | 300.0 | 300.0 | ||
| Google Phone | 42000.0 | 600.0 | 70 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 4530.0 | 16.0 | 289 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 96900.0 | 1700.0 | 57 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 56999.0 | 1000.0 | 57 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3669.0 | 13.0 | 277 | 36.0 | 12.0 | ||
| Vareebadd Phone | 8400.0 | 400.0 | 21 | 400.0 | 400.0 | ||
| Wired Headphones | 2998.0 | 13.0 | 229 | 36.0 | 12.0 | ||
| iPhone | 55300.0 | 700.0 | 79 | 700.0 | 700.0 | ||
| 12 | 20in Monitor | 6379.0 | 110.0 | 58 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 46799.0 | 390.0 | 120 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 20399.0 | 150.0 | 136 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 43699.0 | 380.0 | 115 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1924.0 | 5.0 | 357 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1650.0 | 4.0 | 383 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 44400.0 | 152.0 | 292 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 24598.0 | 101.0 | 243 | 200.0 | 100.0 | ||
| Flatscreen TV | 26400.0 | 300.0 | 88 | 300.0 | 300.0 | ||
| Google Phone | 53400.0 | 600.0 | 89 | 600.0 | 600.0 | ||
| LG Dryer | 7800.0 | 600.0 | 13 | 600.0 | 600.0 | ||
| LG Washing Machine | 5400.0 | 600.0 | 9 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 6070.0 | 16.0 | 381 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 156400.0 | 1700.0 | 92 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 79999.0 | 1000.0 | 80 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 5150.0 | 13.0 | 397 | 36.0 | 12.0 | ||
| Vareebadd Phone | 14800.0 | 400.0 | 37 | 400.0 | 400.0 | ||
| Wired Headphones | 4904.0 | 13.0 | 374 | 36.0 | 12.0 | ||
| iPhone | 96600.0 | 700.0 | 138 | 700.0 | 700.0 | ||
| 2 | 20in Monitor | 4510.0 | 110.0 | 41 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 23009.0 | 397.0 | 58 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 11399.0 | 152.0 | 75 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 21279.0 | 380.0 | 56 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 883.0 | 5.0 | 165 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 703.0 | 5.0 | 154 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 18300.0 | 151.0 | 121 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 11499.0 | 103.0 | 112 | 200.0 | 100.0 | ||
| Flatscreen TV | 14400.0 | 306.0 | 47 | 600.0 | 300.0 | ||
| Google Phone | 32400.0 | 600.0 | 54 | 600.0 | 600.0 | ||
| LG Dryer | 4800.0 | 600.0 | 8 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2900.0 | 16.0 | 184 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 73100.0 | 1700.0 | 43 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 41000.0 | 1000.0 | 41 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2940.0 | 13.0 | 226 | 36.0 | 12.0 | ||
| Vareebadd Phone | 7200.0 | 400.0 | 18 | 400.0 | 400.0 | ||
| Wired Headphones | 2050.0 | 13.0 | 158 | 36.0 | 12.0 | ||
| iPhone | 29400.0 | 700.0 | 42 | 700.0 | 700.0 | ||
| 3 | 20in Monitor | 4510.0 | 110.0 | 41 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 24959.0 | 390.0 | 64 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 14399.0 | 150.0 | 96 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 22419.0 | 380.0 | 59 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 998.0 | 5.0 | 197 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 966.0 | 4.0 | 221 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 27300.0 | 153.0 | 179 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 16198.0 | 102.0 | 159 | 200.0 | 100.0 | ||
| Flatscreen TV | 15300.0 | 300.0 | 51 | 300.0 | 300.0 | ||
| Google Phone | 41400.0 | 600.0 | 69 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3708.0 | 16.0 | 227 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 74800.0 | 1700.0 | 44 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 50999.0 | 1000.0 | 51 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3059.0 | 13.0 | 229 | 48.0 | 12.0 | ||
| Vareebadd Phone | 7600.0 | 400.0 | 19 | 400.0 | 400.0 | ||
| Wired Headphones | 2446.0 | 13.0 | 189 | 36.0 | 12.0 | ||
| iPhone | 49000.0 | 700.0 | 70 | 700.0 | 700.0 | ||
| 4 | 20in Monitor | 7149.0 | 113.0 | 63 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 30419.0 | 390.0 | 78 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 13199.0 | 150.0 | 88 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 34959.0 | 380.0 | 92 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1505.0 | 6.0 | 273 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1130.0 | 4.0 | 271 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 30450.0 | 151.0 | 202 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 19298.0 | 102.0 | 189 | 200.0 | 100.0 | ||
| Flatscreen TV | 18900.0 | 300.0 | 63 | 300.0 | 300.0 | ||
| Google Phone | 42600.0 | 600.0 | 71 | 600.0 | 600.0 | ||
| LG Dryer | 5400.0 | 600.0 | 9 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 4560.0 | 16.0 | 280 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 117300.0 | 1725.0 | 68 | 3400.0 | 1700.0 | ||
| ThinkPad Laptop | 50999.0 | 1000.0 | 51 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3585.0 | 13.0 | 275 | 48.0 | 12.0 | ||
| Vareebadd Phone | 12000.0 | 400.0 | 30 | 400.0 | 400.0 | ||
| Wired Headphones | 3393.0 | 13.0 | 260 | 36.0 | 12.0 | ||
| iPhone | 49000.0 | 700.0 | 70 | 700.0 | 700.0 | ||
| 5 | 20in Monitor | 4840.0 | 113.0 | 43 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 33929.0 | 390.0 | 87 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 17999.0 | 151.0 | 119 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 28119.0 | 385.0 | 73 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 1129.0 | 5.0 | 226 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1268.0 | 5.0 | 273 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 27300.0 | 153.0 | 179 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 16998.0 | 101.0 | 169 | 200.0 | 100.0 | ||
| Flatscreen TV | 14100.0 | 300.0 | 47 | 300.0 | 300.0 | ||
| Google Phone | 48000.0 | 600.0 | 80 | 600.0 | 600.0 | ||
| LG Dryer | 5400.0 | 600.0 | 9 | 600.0 | 600.0 | ||
| LG Washing Machine | 4800.0 | 600.0 | 8 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3738.0 | 16.0 | 236 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 113900.0 | 1700.0 | 67 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 43000.0 | 1000.0 | 43 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3262.0 | 13.0 | 249 | 48.0 | 12.0 | ||
| Vareebadd Phone | 10400.0 | 400.0 | 26 | 400.0 | 400.0 | ||
| Wired Headphones | 3345.0 | 13.0 | 255 | 36.0 | 12.0 | ||
| iPhone | 54600.0 | 700.0 | 78 | 700.0 | 700.0 | ||
| 6 | 20in Monitor | 5060.0 | 110.0 | 46 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 27299.0 | 390.0 | 70 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 8699.0 | 150.0 | 58 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 26979.0 | 380.0 | 71 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1156.0 | 5.0 | 213 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 840.0 | 4.0 | 203 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 24750.0 | 152.0 | 163 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 12799.0 | 101.0 | 127 | 200.0 | 100.0 | ||
| Flatscreen TV | 12600.0 | 300.0 | 42 | 300.0 | 300.0 | ||
| Google Phone | 24000.0 | 600.0 | 40 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3543.0 | 16.0 | 218 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 66300.0 | 1700.0 | 39 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 41000.0 | 1000.0 | 41 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2593.0 | 13.0 | 197 | 36.0 | 12.0 | ||
| Vareebadd Phone | 8000.0 | 400.0 | 20 | 400.0 | 400.0 | ||
| Wired Headphones | 1930.0 | 13.0 | 145 | 36.0 | 12.0 | ||
| iPhone | 51800.0 | 700.0 | 74 | 700.0 | 700.0 | ||
| 7 | 20in Monitor | 4290.0 | 110.0 | 39 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 28859.0 | 390.0 | 74 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 12899.0 | 150.0 | 86 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 28499.0 | 385.0 | 74 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 1079.0 | 5.0 | 207 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 954.0 | 4.0 | 215 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 20250.0 | 150.0 | 135 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 15898.0 | 101.0 | 158 | 200.0 | 100.0 | ||
| Flatscreen TV | 16800.0 | 311.0 | 54 | 600.0 | 300.0 | ||
| Google Phone | 38400.0 | 600.0 | 64 | 600.0 | 600.0 | ||
| LG Dryer | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| LG Washing Machine | 6000.0 | 600.0 | 10 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3304.0 | 16.0 | 210 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 69700.0 | 1700.0 | 41 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 50000.0 | 1000.0 | 50 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3322.0 | 14.0 | 246 | 36.0 | 12.0 | ||
| Vareebadd Phone | 6000.0 | 400.0 | 15 | 400.0 | 400.0 | ||
| Wired Headphones | 2362.0 | 13.0 | 184 | 36.0 | 12.0 | ||
| iPhone | 44100.0 | 700.0 | 63 | 700.0 | 700.0 | ||
| 8 | 20in Monitor | 4510.0 | 110.0 | 41 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 20279.0 | 398.0 | 51 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 10199.0 | 150.0 | 68 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 18620.0 | 380.0 | 49 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 937.0 | 5.0 | 192 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 759.0 | 5.0 | 165 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 20100.0 | 151.0 | 133 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 11299.0 | 102.0 | 111 | 200.0 | 100.0 | ||
| Flatscreen TV | 13800.0 | 300.0 | 46 | 300.0 | 300.0 | ||
| Google Phone | 32400.0 | 600.0 | 54 | 600.0 | 600.0 | ||
| LG Dryer | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2781.0 | 15.0 | 180 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 73100.0 | 1700.0 | 43 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 30000.0 | 1000.0 | 30 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2426.0 | 13.0 | 188 | 36.0 | 12.0 | ||
| Vareebadd Phone | 6800.0 | 425.0 | 16 | 800.0 | 400.0 | ||
| Wired Headphones | 2374.0 | 13.0 | 185 | 36.0 | 12.0 | ||
| iPhone | 46200.0 | 700.0 | 66 | 700.0 | 700.0 | ||
| 9 | 20in Monitor | 4180.0 | 113.0 | 37 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 18720.0 | 390.0 | 48 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 11699.0 | 150.0 | 78 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 15580.0 | 389.0 | 40 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 826.0 | 5.0 | 166 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 727.0 | 4.0 | 165 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 21150.0 | 150.0 | 141 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 8899.0 | 101.0 | 88 | 200.0 | 100.0 | ||
| Flatscreen TV | 8100.0 | 300.0 | 27 | 300.0 | 300.0 | ||
| Google Phone | 28200.0 | 600.0 | 47 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 6000.0 | 600.0 | 10 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3005.0 | 16.0 | 190 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 83300.0 | 1700.0 | 49 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 37000.0 | 1000.0 | 37 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2486.0 | 13.0 | 190 | 36.0 | 12.0 | ||
| Vareebadd Phone | 7200.0 | 400.0 | 18 | 400.0 | 400.0 | ||
| Wired Headphones | 1894.0 | 13.0 | 142 | 24.0 | 12.0 | ||
| iPhone | 39200.0 | 700.0 | 56 | 700.0 | 700.0 | ||
| Portland(ME) | 1 | 20in Monitor | 220.0 | 110.0 | 2 | 110.0 | 110.0 |
| 27in 4K Gaming Monitor | 1950.0 | 390.0 | 5 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 300.0 | 150.0 | 2 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 1520.0 | 380.0 | 4 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 104.0 | 5.0 | 21 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 57.0 | 4.0 | 13 | 9.0 | 3.0 | ||
| Apple Airpods Headphones | 1950.0 | 150.0 | 13 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 700.0 | 100.0 | 7 | 100.0 | 100.0 | ||
| Flatscreen TV | 1800.0 | 300.0 | 6 | 300.0 | 300.0 | ||
| Google Phone | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Dryer | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 209.0 | 16.0 | 13 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 6800.0 | 1700.0 | 4 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 2000.0 | 1000.0 | 2 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 155.0 | 13.0 | 12 | 24.0 | 12.0 | ||
| Vareebadd Phone | 400.0 | 400.0 | 1 | 400.0 | 400.0 | ||
| Wired Headphones | 144.0 | 13.0 | 11 | 24.0 | 12.0 | ||
| iPhone | 1400.0 | 700.0 | 2 | 700.0 | 700.0 | ||
| 10 | 20in Monitor | 550.0 | 110.0 | 5 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 3120.0 | 390.0 | 8 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 1650.0 | 150.0 | 11 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 3800.0 | 380.0 | 10 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 146.0 | 5.0 | 30 | 8.0 | 4.0 | ||
| AAA Batteries (4-pack) | 81.0 | 5.0 | 17 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 4050.0 | 156.0 | 26 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 2300.0 | 110.0 | 21 | 200.0 | 100.0 | ||
| Flatscreen TV | 900.0 | 300.0 | 3 | 300.0 | 300.0 | ||
| Google Phone | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 448.0 | 15.0 | 29 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 15300.0 | 1700.0 | 9 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 9000.0 | 1000.0 | 9 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 394.0 | 14.0 | 28 | 24.0 | 12.0 | ||
| Vareebadd Phone | 400.0 | 400.0 | 1 | 400.0 | 400.0 | ||
| Wired Headphones | 384.0 | 13.0 | 29 | 24.0 | 12.0 | ||
| iPhone | 5600.0 | 700.0 | 8 | 700.0 | 700.0 | ||
| 11 | 20in Monitor | 660.0 | 110.0 | 6 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 3510.0 | 390.0 | 9 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 1650.0 | 150.0 | 11 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 4180.0 | 380.0 | 11 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 142.0 | 5.0 | 27 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 96.0 | 4.0 | 22 | 9.0 | 3.0 | ||
| Apple Airpods Headphones | 3300.0 | 150.0 | 22 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 2200.0 | 100.0 | 22 | 100.0 | 100.0 | ||
| Flatscreen TV | 2700.0 | 300.0 | 9 | 300.0 | 300.0 | ||
| Google Phone | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 374.0 | 16.0 | 24 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 3400.0 | 1700.0 | 2 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 2000.0 | 1000.0 | 2 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 335.0 | 13.0 | 26 | 24.0 | 12.0 | ||
| Wired Headphones | 336.0 | 15.0 | 22 | 36.0 | 12.0 | ||
| iPhone | 5600.0 | 700.0 | 8 | 700.0 | 700.0 | ||
| 12 | 20in Monitor | 1210.0 | 110.0 | 11 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 3510.0 | 390.0 | 9 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 2400.0 | 150.0 | 16 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 3040.0 | 380.0 | 8 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 169.0 | 5.0 | 34 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 179.0 | 4.0 | 41 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 3900.0 | 150.0 | 26 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 1600.0 | 100.0 | 16 | 100.0 | 100.0 | ||
| Flatscreen TV | 2100.0 | 300.0 | 7 | 300.0 | 300.0 | ||
| Google Phone | 5400.0 | 600.0 | 9 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 493.0 | 16.0 | 31 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 15300.0 | 1700.0 | 9 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 7000.0 | 1000.0 | 7 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 621.0 | 13.0 | 47 | 36.0 | 12.0 | ||
| Vareebadd Phone | 1200.0 | 400.0 | 3 | 400.0 | 400.0 | ||
| Wired Headphones | 444.0 | 12.0 | 36 | 24.0 | 12.0 | ||
| iPhone | 2800.0 | 700.0 | 4 | 700.0 | 700.0 | ||
| 2 | 20in Monitor | 330.0 | 110.0 | 3 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 3120.0 | 390.0 | 8 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 600.0 | 150.0 | 4 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 1140.0 | 380.0 | 3 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 65.0 | 5.0 | 12 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 123.0 | 6.0 | 20 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 2250.0 | 150.0 | 15 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 1900.0 | 100.0 | 19 | 100.0 | 100.0 | ||
| Flatscreen TV | 900.0 | 300.0 | 3 | 300.0 | 300.0 | ||
| Google Phone | 4800.0 | 600.0 | 8 | 600.0 | 600.0 | ||
| LG Dryer | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 344.0 | 16.0 | 22 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 5100.0 | 1700.0 | 3 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 2000.0 | 1000.0 | 2 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 406.0 | 13.0 | 32 | 24.0 | 12.0 | ||
| Vareebadd Phone | 1200.0 | 400.0 | 3 | 400.0 | 400.0 | ||
| Wired Headphones | 168.0 | 14.0 | 12 | 24.0 | 12.0 | ||
| iPhone | 4200.0 | 700.0 | 6 | 700.0 | 700.0 | ||
| 3 | 20in Monitor | 990.0 | 110.0 | 9 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 390.0 | 390.0 | 1 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 1500.0 | 150.0 | 10 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 1900.0 | 380.0 | 5 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 173.0 | 5.0 | 35 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 96.0 | 5.0 | 19 | 9.0 | 3.0 | ||
| Apple Airpods Headphones | 2550.0 | 159.0 | 16 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 1500.0 | 100.0 | 15 | 100.0 | 100.0 | ||
| Flatscreen TV | 600.0 | 300.0 | 2 | 300.0 | 300.0 | ||
| Google Phone | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Dryer | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 179.0 | 15.0 | 12 | 15.0 | 15.0 | ||
| Macbook Pro Laptop | 10200.0 | 1700.0 | 6 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 2000.0 | 1000.0 | 2 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 215.0 | 13.0 | 17 | 24.0 | 12.0 | ||
| Vareebadd Phone | 800.0 | 400.0 | 2 | 400.0 | 400.0 | ||
| Wired Headphones | 324.0 | 12.0 | 26 | 24.0 | 12.0 | ||
| iPhone | 3500.0 | 700.0 | 5 | 700.0 | 700.0 | ||
| 4 | 20in Monitor | 660.0 | 110.0 | 6 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 2340.0 | 390.0 | 6 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 2100.0 | 150.0 | 14 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 2660.0 | 380.0 | 7 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 119.0 | 4.0 | 29 | 8.0 | 4.0 | ||
| AAA Batteries (4-pack) | 78.0 | 5.0 | 17 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 3300.0 | 150.0 | 22 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 1700.0 | 100.0 | 17 | 100.0 | 100.0 | ||
| Flatscreen TV | 600.0 | 300.0 | 2 | 300.0 | 300.0 | ||
| Google Phone | 6000.0 | 600.0 | 10 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 299.0 | 15.0 | 20 | 15.0 | 15.0 | ||
| Macbook Pro Laptop | 10200.0 | 1700.0 | 6 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 5000.0 | 1000.0 | 5 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 574.0 | 14.0 | 41 | 24.0 | 12.0 | ||
| Vareebadd Phone | 1600.0 | 400.0 | 4 | 400.0 | 400.0 | ||
| Wired Headphones | 408.0 | 14.0 | 30 | 36.0 | 12.0 | ||
| iPhone | 4900.0 | 700.0 | 7 | 700.0 | 700.0 | ||
| 5 | 20in Monitor | 550.0 | 110.0 | 5 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 3510.0 | 390.0 | 9 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 1800.0 | 150.0 | 12 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 3420.0 | 380.0 | 9 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 123.0 | 6.0 | 22 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 60.0 | 4.0 | 16 | 6.0 | 3.0 | ||
| Apple Airpods Headphones | 3300.0 | 150.0 | 22 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 1300.0 | 100.0 | 13 | 100.0 | 100.0 | ||
| Flatscreen TV | 3300.0 | 300.0 | 11 | 300.0 | 300.0 | ||
| Google Phone | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 254.0 | 15.0 | 17 | 15.0 | 15.0 | ||
| Macbook Pro Laptop | 13600.0 | 1700.0 | 8 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 8000.0 | 1000.0 | 8 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 311.0 | 12.0 | 25 | 24.0 | 12.0 | ||
| Vareebadd Phone | 400.0 | 400.0 | 1 | 400.0 | 400.0 | ||
| Wired Headphones | 252.0 | 15.0 | 17 | 24.0 | 12.0 | ||
| iPhone | 11200.0 | 700.0 | 16 | 700.0 | 700.0 | ||
| 6 | 20in Monitor | 330.0 | 110.0 | 3 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 2730.0 | 390.0 | 7 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 1050.0 | 150.0 | 7 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 1900.0 | 380.0 | 5 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 142.0 | 6.0 | 25 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 123.0 | 5.0 | 25 | 9.0 | 3.0 | ||
| Apple Airpods Headphones | 2100.0 | 150.0 | 14 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 2000.0 | 100.0 | 20 | 100.0 | 100.0 | ||
| Flatscreen TV | 1500.0 | 300.0 | 5 | 300.0 | 300.0 | ||
| Google Phone | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Dryer | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 448.0 | 17.0 | 27 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 5100.0 | 1700.0 | 3 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 4000.0 | 1000.0 | 4 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 287.0 | 12.0 | 24 | 12.0 | 12.0 | ||
| Vareebadd Phone | 400.0 | 400.0 | 1 | 400.0 | 400.0 | ||
| Wired Headphones | 216.0 | 14.0 | 15 | 24.0 | 12.0 | ||
| iPhone | 3500.0 | 700.0 | 5 | 700.0 | 700.0 | ||
| 7 | 20in Monitor | 440.0 | 110.0 | 4 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 3510.0 | 390.0 | 9 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 1200.0 | 150.0 | 8 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 3800.0 | 380.0 | 10 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 81.0 | 5.0 | 16 | 8.0 | 4.0 | ||
| AAA Batteries (4-pack) | 102.0 | 4.0 | 25 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 3750.0 | 163.0 | 23 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 1100.0 | 100.0 | 11 | 100.0 | 100.0 | ||
| Flatscreen TV | 1500.0 | 300.0 | 5 | 300.0 | 300.0 | ||
| Google Phone | 5400.0 | 600.0 | 9 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 448.0 | 16.0 | 28 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 3400.0 | 1700.0 | 2 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 3000.0 | 1000.0 | 3 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 239.0 | 13.0 | 18 | 24.0 | 12.0 | ||
| Wired Headphones | 252.0 | 12.0 | 21 | 12.0 | 12.0 | ||
| iPhone | 4200.0 | 700.0 | 6 | 700.0 | 700.0 | ||
| 8 | 20in Monitor | 330.0 | 110.0 | 3 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 3120.0 | 390.0 | 8 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 1800.0 | 150.0 | 12 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 1140.0 | 380.0 | 3 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 111.0 | 6.0 | 19 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 27.0 | 3.0 | 8 | 6.0 | 3.0 | ||
| Apple Airpods Headphones | 2400.0 | 160.0 | 15 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 1000.0 | 100.0 | 10 | 100.0 | 100.0 | ||
| Flatscreen TV | 1800.0 | 300.0 | 6 | 300.0 | 300.0 | ||
| Google Phone | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 254.0 | 16.0 | 16 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 6800.0 | 1700.0 | 4 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 7000.0 | 1000.0 | 7 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 287.0 | 12.0 | 23 | 24.0 | 12.0 | ||
| Vareebadd Phone | 400.0 | 400.0 | 1 | 400.0 | 400.0 | ||
| Wired Headphones | 228.0 | 13.0 | 17 | 24.0 | 12.0 | ||
| iPhone | 6300.0 | 700.0 | 9 | 700.0 | 700.0 | ||
| 9 | 20in Monitor | 220.0 | 110.0 | 2 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 2340.0 | 390.0 | 6 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 1050.0 | 150.0 | 7 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 380.0 | 380.0 | 1 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 119.0 | 5.0 | 23 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 51.0 | 4.0 | 14 | 9.0 | 3.0 | ||
| Apple Airpods Headphones | 2100.0 | 150.0 | 14 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 700.0 | 100.0 | 7 | 100.0 | 100.0 | ||
| Flatscreen TV | 900.0 | 300.0 | 3 | 300.0 | 300.0 | ||
| Google Phone | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 269.0 | 16.0 | 17 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 11900.0 | 1700.0 | 7 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 2000.0 | 1000.0 | 2 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 239.0 | 13.0 | 18 | 24.0 | 12.0 | ||
| Wired Headphones | 192.0 | 14.0 | 14 | 24.0 | 12.0 | ||
| iPhone | 2100.0 | 700.0 | 3 | 700.0 | 700.0 | ||
| Portland(OR) | 1 | 20in Monitor | 1980.0 | 110.0 | 18 | 110.0 | 110.0 |
| 27in 4K Gaming Monitor | 8970.0 | 390.0 | 23 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 3150.0 | 150.0 | 21 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 6460.0 | 380.0 | 17 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 296.0 | 6.0 | 50 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 182.0 | 4.0 | 48 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 9450.0 | 152.0 | 62 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 2400.0 | 100.0 | 24 | 100.0 | 100.0 | ||
| Flatscreen TV | 4800.0 | 300.0 | 16 | 300.0 | 300.0 | ||
| Google Phone | 9000.0 | 600.0 | 15 | 600.0 | 600.0 | ||
| LG Dryer | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 718.0 | 16.0 | 46 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 13600.0 | 1700.0 | 8 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 13000.0 | 1000.0 | 13 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 753.0 | 13.0 | 59 | 24.0 | 12.0 | ||
| Vareebadd Phone | 3600.0 | 400.0 | 9 | 400.0 | 400.0 | ||
| Wired Headphones | 719.0 | 13.0 | 54 | 24.0 | 12.0 | ||
| iPhone | 12600.0 | 700.0 | 18 | 700.0 | 700.0 | ||
| 10 | 20in Monitor | 1760.0 | 110.0 | 16 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 17550.0 | 399.0 | 44 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 6600.0 | 150.0 | 44 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 12920.0 | 380.0 | 34 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 653.0 | 5.0 | 132 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 565.0 | 5.0 | 123 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 12000.0 | 154.0 | 78 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 8299.0 | 101.0 | 82 | 200.0 | 100.0 | ||
| Flatscreen TV | 7800.0 | 300.0 | 26 | 300.0 | 300.0 | ||
| Google Phone | 21000.0 | 600.0 | 35 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2362.0 | 16.0 | 149 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 51000.0 | 1700.0 | 30 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 23000.0 | 1000.0 | 23 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1888.0 | 13.0 | 143 | 36.0 | 12.0 | ||
| Vareebadd Phone | 3200.0 | 400.0 | 8 | 400.0 | 400.0 | ||
| Wired Headphones | 1583.0 | 13.0 | 123 | 24.0 | 12.0 | ||
| iPhone | 26600.0 | 700.0 | 38 | 700.0 | 700.0 | ||
| 11 | 20in Monitor | 2530.0 | 110.0 | 23 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 9360.0 | 390.0 | 24 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6900.0 | 150.0 | 46 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 11400.0 | 393.0 | 29 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 572.0 | 5.0 | 113 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 517.0 | 5.0 | 107 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 12750.0 | 150.0 | 85 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 5899.0 | 100.0 | 59 | 100.0 | 100.0 | ||
| Flatscreen TV | 7200.0 | 300.0 | 24 | 300.0 | 300.0 | ||
| Google Phone | 19800.0 | 600.0 | 33 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1734.0 | 16.0 | 107 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 45900.0 | 1700.0 | 27 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 18000.0 | 1000.0 | 18 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1434.0 | 13.0 | 113 | 24.0 | 12.0 | ||
| Vareebadd Phone | 4000.0 | 400.0 | 10 | 400.0 | 400.0 | ||
| Wired Headphones | 1115.0 | 13.0 | 83 | 36.0 | 12.0 | ||
| iPhone | 21700.0 | 700.0 | 31 | 700.0 | 700.0 | ||
| 12 | 20in Monitor | 2860.0 | 110.0 | 26 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 16770.0 | 390.0 | 43 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 8699.0 | 150.0 | 58 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 15580.0 | 380.0 | 41 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 791.0 | 5.0 | 150 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 753.0 | 5.0 | 159 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 18750.0 | 151.0 | 124 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 9699.0 | 100.0 | 97 | 100.0 | 100.0 | ||
| Flatscreen TV | 9000.0 | 300.0 | 30 | 300.0 | 300.0 | ||
| Google Phone | 20400.0 | 600.0 | 34 | 600.0 | 600.0 | ||
| LG Dryer | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2631.0 | 16.0 | 168 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 66300.0 | 1700.0 | 39 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 30000.0 | 1000.0 | 30 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1781.0 | 13.0 | 142 | 24.0 | 12.0 | ||
| Vareebadd Phone | 4400.0 | 400.0 | 11 | 400.0 | 400.0 | ||
| Wired Headphones | 1535.0 | 13.0 | 119 | 24.0 | 12.0 | ||
| iPhone | 36400.0 | 700.0 | 52 | 700.0 | 700.0 | ||
| 2 | 20in Monitor | 2310.0 | 115.0 | 20 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 10140.0 | 390.0 | 26 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4650.0 | 155.0 | 30 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 7600.0 | 380.0 | 20 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 338.0 | 5.0 | 68 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 332.0 | 4.0 | 78 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 8550.0 | 150.0 | 57 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 4900.0 | 102.0 | 48 | 200.0 | 100.0 | ||
| Flatscreen TV | 3600.0 | 300.0 | 12 | 300.0 | 300.0 | ||
| Google Phone | 10800.0 | 600.0 | 18 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1241.0 | 16.0 | 76 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 23800.0 | 1700.0 | 14 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 16000.0 | 1000.0 | 16 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 956.0 | 12.0 | 77 | 24.0 | 12.0 | ||
| Vareebadd Phone | 2000.0 | 400.0 | 5 | 400.0 | 400.0 | ||
| Wired Headphones | 791.0 | 13.0 | 61 | 24.0 | 12.0 | ||
| iPhone | 21000.0 | 700.0 | 30 | 700.0 | 700.0 | ||
| 3 | 20in Monitor | 1980.0 | 110.0 | 18 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 8970.0 | 390.0 | 23 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4950.0 | 150.0 | 33 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 12160.0 | 380.0 | 32 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 492.0 | 5.0 | 98 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 443.0 | 5.0 | 92 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 9600.0 | 150.0 | 64 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 6999.0 | 101.0 | 69 | 200.0 | 100.0 | ||
| Flatscreen TV | 3900.0 | 300.0 | 13 | 300.0 | 300.0 | ||
| Google Phone | 9600.0 | 600.0 | 16 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1405.0 | 15.0 | 91 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 51000.0 | 1700.0 | 30 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 19000.0 | 1000.0 | 19 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1171.0 | 14.0 | 86 | 36.0 | 12.0 | ||
| Vareebadd Phone | 4400.0 | 400.0 | 11 | 400.0 | 400.0 | ||
| Wired Headphones | 923.0 | 12.0 | 74 | 24.0 | 12.0 | ||
| iPhone | 16100.0 | 732.0 | 22 | 1400.0 | 700.0 | ||
| 4 | 20in Monitor | 1980.0 | 110.0 | 18 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 12480.0 | 390.0 | 32 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6150.0 | 150.0 | 41 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 15200.0 | 380.0 | 40 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 622.0 | 6.0 | 111 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 440.0 | 4.0 | 99 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 12150.0 | 150.0 | 81 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 6499.0 | 100.0 | 65 | 100.0 | 100.0 | ||
| Flatscreen TV | 9300.0 | 300.0 | 31 | 300.0 | 300.0 | ||
| Google Phone | 22800.0 | 600.0 | 38 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1914.0 | 17.0 | 115 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 52700.0 | 1700.0 | 31 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 15000.0 | 1000.0 | 15 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1506.0 | 13.0 | 115 | 24.0 | 12.0 | ||
| Vareebadd Phone | 5200.0 | 400.0 | 13 | 400.0 | 400.0 | ||
| Wired Headphones | 1403.0 | 14.0 | 100 | 36.0 | 12.0 | ||
| iPhone | 27300.0 | 700.0 | 39 | 700.0 | 700.0 | ||
| 5 | 20in Monitor | 2310.0 | 110.0 | 21 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 12480.0 | 390.0 | 32 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4650.0 | 150.0 | 31 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 12920.0 | 380.0 | 34 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 645.0 | 5.0 | 123 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 478.0 | 4.0 | 109 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 10050.0 | 150.0 | 67 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 6199.0 | 100.0 | 62 | 100.0 | 100.0 | ||
| Flatscreen TV | 5100.0 | 300.0 | 17 | 300.0 | 300.0 | ||
| Google Phone | 13200.0 | 600.0 | 22 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1988.0 | 16.0 | 124 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 45900.0 | 1700.0 | 27 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 20000.0 | 1000.0 | 20 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1326.0 | 13.0 | 100 | 36.0 | 12.0 | ||
| Vareebadd Phone | 4400.0 | 400.0 | 11 | 400.0 | 400.0 | ||
| Wired Headphones | 1283.0 | 13.0 | 100 | 36.0 | 12.0 | ||
| iPhone | 26600.0 | 700.0 | 38 | 700.0 | 700.0 | ||
| 6 | 20in Monitor | 1320.0 | 110.0 | 12 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 8970.0 | 390.0 | 23 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 5400.0 | 150.0 | 36 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 6840.0 | 380.0 | 18 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 384.0 | 5.0 | 77 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 434.0 | 5.0 | 86 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 10950.0 | 150.0 | 73 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 4800.0 | 100.0 | 48 | 100.0 | 100.0 | ||
| Flatscreen TV | 6000.0 | 300.0 | 20 | 300.0 | 300.0 | ||
| Google Phone | 9000.0 | 600.0 | 15 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1196.0 | 16.0 | 75 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 35700.0 | 1700.0 | 21 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 22000.0 | 1000.0 | 22 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1183.0 | 13.0 | 92 | 24.0 | 12.0 | ||
| Vareebadd Phone | 3600.0 | 400.0 | 9 | 400.0 | 400.0 | ||
| Wired Headphones | 1187.0 | 13.0 | 88 | 36.0 | 12.0 | ||
| iPhone | 18200.0 | 700.0 | 26 | 700.0 | 700.0 | ||
| 7 | 20in Monitor | 2200.0 | 110.0 | 20 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 12090.0 | 390.0 | 31 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 3750.0 | 150.0 | 25 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 9880.0 | 380.0 | 26 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 392.0 | 5.0 | 77 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 353.0 | 4.0 | 80 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 10200.0 | 150.0 | 68 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 5799.0 | 102.0 | 57 | 200.0 | 100.0 | ||
| Flatscreen TV | 7200.0 | 300.0 | 24 | 300.0 | 300.0 | ||
| Google Phone | 12000.0 | 600.0 | 20 | 600.0 | 600.0 | ||
| LG Dryer | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1360.0 | 16.0 | 84 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 30600.0 | 1700.0 | 18 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 22000.0 | 1000.0 | 22 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 944.0 | 13.0 | 71 | 24.0 | 12.0 | ||
| Vareebadd Phone | 2400.0 | 400.0 | 6 | 400.0 | 400.0 | ||
| Wired Headphones | 827.0 | 14.0 | 60 | 36.0 | 12.0 | ||
| iPhone | 19600.0 | 700.0 | 28 | 700.0 | 700.0 | ||
| 8 | 20in Monitor | 770.0 | 110.0 | 7 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 9360.0 | 390.0 | 24 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 4650.0 | 155.0 | 30 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 5700.0 | 380.0 | 15 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 465.0 | 6.0 | 79 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 308.0 | 4.0 | 74 | 24.0 | 3.0 | ||
| Apple Airpods Headphones | 7650.0 | 153.0 | 50 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 4100.0 | 100.0 | 41 | 100.0 | 100.0 | ||
| Flatscreen TV | 6900.0 | 300.0 | 23 | 300.0 | 300.0 | ||
| Google Phone | 11400.0 | 600.0 | 19 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1241.0 | 16.0 | 77 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 25500.0 | 1700.0 | 15 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 12000.0 | 1000.0 | 12 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1016.0 | 13.0 | 79 | 24.0 | 12.0 | ||
| Vareebadd Phone | 1600.0 | 400.0 | 4 | 400.0 | 400.0 | ||
| Wired Headphones | 923.0 | 13.0 | 73 | 36.0 | 12.0 | ||
| iPhone | 20300.0 | 700.0 | 29 | 700.0 | 700.0 | ||
| 9 | 20in Monitor | 2090.0 | 110.0 | 19 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 8970.0 | 390.0 | 23 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 2850.0 | 150.0 | 19 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 7600.0 | 380.0 | 20 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 303.0 | 5.0 | 66 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 344.0 | 5.0 | 67 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 7800.0 | 150.0 | 52 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 5299.0 | 100.0 | 53 | 100.0 | 100.0 | ||
| Flatscreen TV | 4200.0 | 323.0 | 13 | 600.0 | 300.0 | ||
| Google Phone | 7800.0 | 600.0 | 13 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1076.0 | 16.0 | 67 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 23800.0 | 1700.0 | 14 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 11000.0 | 1000.0 | 11 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 884.0 | 13.0 | 70 | 24.0 | 12.0 | ||
| Vareebadd Phone | 4000.0 | 400.0 | 10 | 400.0 | 400.0 | ||
| Wired Headphones | 695.0 | 13.0 | 55 | 36.0 | 12.0 | ||
| iPhone | 13300.0 | 700.0 | 19 | 700.0 | 700.0 | ||
| San Francisco(CA) | 1 | 20in Monitor | 5719.0 | 112.0 | 51 | 220.0 | 110.0 |
| 27in 4K Gaming Monitor | 30809.0 | 390.0 | 79 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 15299.0 | 150.0 | 102 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 26599.0 | 380.0 | 70 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1448.0 | 5.0 | 270 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1109.0 | 4.0 | 255 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 31050.0 | 151.0 | 206 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 15298.0 | 100.0 | 153 | 100.0 | 100.0 | ||
| Flatscreen TV | 12900.0 | 300.0 | 43 | 300.0 | 300.0 | ||
| Google Phone | 52200.0 | 600.0 | 87 | 600.0 | 600.0 | ||
| LG Dryer | 6600.0 | 600.0 | 11 | 600.0 | 600.0 | ||
| LG Washing Machine | 6600.0 | 600.0 | 11 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 4171.0 | 16.0 | 257 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 88400.0 | 1700.0 | 52 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 49000.0 | 1000.0 | 49 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 3800.0 | 13.0 | 285 | 48.0 | 12.0 | ||
| Vareebadd Phone | 9200.0 | 400.0 | 23 | 400.0 | 400.0 | ||
| Wired Headphones | 3285.0 | 13.0 | 259 | 36.0 | 12.0 | ||
| iPhone | 72100.0 | 700.0 | 103 | 700.0 | 700.0 | ||
| 10 | 20in Monitor | 12649.0 | 111.0 | 114 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 64348.0 | 395.0 | 163 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 25348.0 | 150.0 | 169 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 58518.0 | 380.0 | 154 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 2515.0 | 5.0 | 504 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 2240.0 | 4.0 | 505 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 57750.0 | 151.0 | 382 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 36396.0 | 101.0 | 360 | 200.0 | 100.0 | ||
| Flatscreen TV | 38400.0 | 300.0 | 128 | 300.0 | 300.0 | ||
| Google Phone | 89400.0 | 600.0 | 149 | 600.0 | 600.0 | ||
| LG Dryer | 9600.0 | 600.0 | 16 | 600.0 | 600.0 | ||
| LG Washing Machine | 8400.0 | 600.0 | 14 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 9718.0 | 16.0 | 613 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 202300.0 | 1700.0 | 119 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 96999.0 | 1000.0 | 97 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 7457.0 | 13.0 | 574 | 48.0 | 12.0 | ||
| Vareebadd Phone | 19200.0 | 400.0 | 48 | 400.0 | 400.0 | ||
| Wired Headphones | 6463.0 | 13.0 | 492 | 36.0 | 12.0 | ||
| iPhone | 119000.0 | 700.0 | 170 | 700.0 | 700.0 | ||
| 11 | 20in Monitor | 12649.0 | 110.0 | 115 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 51869.0 | 390.0 | 133 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 27148.0 | 151.0 | 180 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 42179.0 | 380.0 | 111 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 2412.0 | 5.0 | 472 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 2168.0 | 5.0 | 481 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 58350.0 | 152.0 | 385 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 31797.0 | 101.0 | 316 | 200.0 | 100.0 | ||
| Flatscreen TV | 34200.0 | 303.0 | 113 | 600.0 | 300.0 | ||
| Google Phone | 72600.0 | 600.0 | 121 | 600.0 | 600.0 | ||
| LG Dryer | 8400.0 | 600.0 | 14 | 600.0 | 600.0 | ||
| LG Washing Machine | 8400.0 | 600.0 | 14 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 7998.0 | 16.0 | 502 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 163200.0 | 1700.0 | 96 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 87999.0 | 1000.0 | 88 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 6692.0 | 13.0 | 505 | 36.0 | 12.0 | ||
| Vareebadd Phone | 18000.0 | 400.0 | 45 | 400.0 | 400.0 | ||
| Wired Headphones | 5719.0 | 13.0 | 448 | 36.0 | 12.0 | ||
| iPhone | 123200.0 | 700.0 | 176 | 700.0 | 700.0 | ||
| 12 | 20in Monitor | 16718.0 | 111.0 | 150 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 72928.0 | 390.0 | 187 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 37198.0 | 151.0 | 247 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 79038.0 | 382.0 | 207 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 3379.0 | 5.0 | 642 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 3175.0 | 5.0 | 703 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 68100.0 | 152.0 | 449 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 43596.0 | 101.0 | 433 | 200.0 | 100.0 | ||
| Flatscreen TV | 49500.0 | 302.0 | 164 | 600.0 | 300.0 | ||
| Google Phone | 120000.0 | 600.0 | 200 | 600.0 | 600.0 | ||
| LG Dryer | 7800.0 | 600.0 | 13 | 600.0 | 600.0 | ||
| LG Washing Machine | 17400.0 | 600.0 | 29 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 10390.0 | 16.0 | 654 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 282200.0 | 1700.0 | 166 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 117999.0 | 1000.0 | 118 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 9823.0 | 13.0 | 750 | 36.0 | 12.0 | ||
| Vareebadd Phone | 26000.0 | 400.0 | 65 | 400.0 | 400.0 | ||
| Wired Headphones | 8357.0 | 13.0 | 652 | 48.0 | 12.0 | ||
| iPhone | 133000.0 | 700.0 | 190 | 700.0 | 700.0 | ||
| 2 | 20in Monitor | 5609.0 | 110.0 | 51 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 39779.0 | 390.0 | 102 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 17699.0 | 150.0 | 118 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 34199.0 | 380.0 | 90 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1555.0 | 5.0 | 302 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1393.0 | 4.0 | 310 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 40950.0 | 151.0 | 272 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 18698.0 | 102.0 | 184 | 200.0 | 100.0 | ||
| Flatscreen TV | 22200.0 | 300.0 | 74 | 300.0 | 300.0 | ||
| Google Phone | 67200.0 | 605.0 | 111 | 1200.0 | 600.0 | ||
| LG Dryer | 5400.0 | 600.0 | 9 | 600.0 | 600.0 | ||
| LG Washing Machine | 7200.0 | 600.0 | 12 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 5158.0 | 16.0 | 326 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 127500.0 | 1700.0 | 75 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 64999.0 | 1000.0 | 65 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 4911.0 | 13.0 | 379 | 36.0 | 12.0 | ||
| Vareebadd Phone | 8000.0 | 400.0 | 20 | 400.0 | 400.0 | ||
| Wired Headphones | 3921.0 | 13.0 | 304 | 36.0 | 12.0 | ||
| iPhone | 70700.0 | 700.0 | 101 | 700.0 | 700.0 | ||
| 3 | 20in Monitor | 9239.0 | 110.0 | 84 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 46019.0 | 390.0 | 118 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 21149.0 | 150.0 | 141 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 44839.0 | 380.0 | 118 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1882.0 | 5.0 | 372 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1743.0 | 5.0 | 384 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 46950.0 | 150.0 | 312 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 29197.0 | 101.0 | 289 | 200.0 | 100.0 | ||
| Flatscreen TV | 27300.0 | 307.0 | 89 | 600.0 | 300.0 | ||
| Google Phone | 60600.0 | 600.0 | 101 | 600.0 | 600.0 | ||
| LG Dryer | 9000.0 | 600.0 | 15 | 600.0 | 600.0 | ||
| LG Washing Machine | 10800.0 | 600.0 | 18 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 6623.0 | 16.0 | 416 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 161500.0 | 1700.0 | 95 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 81999.0 | 1000.0 | 82 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 5939.0 | 13.0 | 449 | 36.0 | 12.0 | ||
| Vareebadd Phone | 18400.0 | 400.0 | 46 | 400.0 | 400.0 | ||
| Wired Headphones | 4149.0 | 13.0 | 322 | 36.0 | 12.0 | ||
| iPhone | 106400.0 | 700.0 | 152 | 700.0 | 700.0 | ||
| 4 | 20in Monitor | 8139.0 | 110.0 | 74 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 52649.0 | 393.0 | 134 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 25348.0 | 150.0 | 169 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 66498.0 | 384.0 | 173 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 2554.0 | 5.0 | 487 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 2231.0 | 4.0 | 502 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 54300.0 | 151.0 | 359 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 32897.0 | 101.0 | 327 | 200.0 | 100.0 | ||
| Flatscreen TV | 33900.0 | 303.0 | 112 | 600.0 | 300.0 | ||
| Google Phone | 77400.0 | 600.0 | 129 | 600.0 | 600.0 | ||
| LG Dryer | 10200.0 | 600.0 | 17 | 600.0 | 600.0 | ||
| LG Washing Machine | 9600.0 | 600.0 | 16 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 8596.0 | 16.0 | 535 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 190400.0 | 1715.0 | 111 | 3400.0 | 1700.0 | ||
| ThinkPad Laptop | 87999.0 | 1000.0 | 88 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 6561.0 | 13.0 | 508 | 36.0 | 12.0 | ||
| Vareebadd Phone | 18800.0 | 400.0 | 47 | 400.0 | 400.0 | ||
| Wired Headphones | 6055.0 | 13.0 | 469 | 36.0 | 12.0 | ||
| iPhone | 118300.0 | 700.0 | 169 | 700.0 | 700.0 | ||
| 5 | 20in Monitor | 8909.0 | 110.0 | 81 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 49919.0 | 393.0 | 127 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 26398.0 | 150.0 | 176 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 47119.0 | 380.0 | 124 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 2231.0 | 5.0 | 435 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1985.0 | 5.0 | 426 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 49350.0 | 151.0 | 327 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 26297.0 | 100.0 | 262 | 200.0 | 100.0 | ||
| Flatscreen TV | 25800.0 | 300.0 | 86 | 300.0 | 300.0 | ||
| Google Phone | 69600.0 | 605.0 | 115 | 1200.0 | 600.0 | ||
| LG Dryer | 7800.0 | 600.0 | 13 | 600.0 | 600.0 | ||
| LG Washing Machine | 10200.0 | 600.0 | 17 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 7445.0 | 16.0 | 456 | 60.0 | 15.0 | ||
| Macbook Pro Laptop | 210800.0 | 1700.0 | 124 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 86999.0 | 1000.0 | 87 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 5987.0 | 13.0 | 448 | 36.0 | 12.0 | ||
| Vareebadd Phone | 24000.0 | 400.0 | 60 | 400.0 | 400.0 | ||
| Wired Headphones | 5240.0 | 13.0 | 406 | 48.0 | 12.0 | ||
| iPhone | 110600.0 | 700.0 | 158 | 700.0 | 700.0 | ||
| 6 | 20in Monitor | 8139.0 | 110.0 | 74 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 38609.0 | 390.0 | 99 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 22199.0 | 151.0 | 147 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 42939.0 | 380.0 | 113 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1893.0 | 5.0 | 383 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1561.0 | 4.0 | 364 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 38700.0 | 154.0 | 252 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 26297.0 | 102.0 | 258 | 300.0 | 100.0 | ||
| Flatscreen TV | 27000.0 | 300.0 | 90 | 300.0 | 300.0 | ||
| Google Phone | 63600.0 | 600.0 | 106 | 600.0 | 600.0 | ||
| LG Dryer | 4800.0 | 600.0 | 8 | 600.0 | 600.0 | ||
| LG Washing Machine | 8400.0 | 600.0 | 14 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 6115.0 | 16.0 | 375 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 141100.0 | 1721.0 | 82 | 3400.0 | 1700.0 | ||
| ThinkPad Laptop | 76999.0 | 1000.0 | 77 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 5210.0 | 13.0 | 395 | 36.0 | 12.0 | ||
| Vareebadd Phone | 13600.0 | 400.0 | 34 | 400.0 | 400.0 | ||
| Wired Headphones | 4113.0 | 13.0 | 315 | 36.0 | 12.0 | ||
| iPhone | 81900.0 | 700.0 | 117 | 700.0 | 700.0 | ||
| 7 | 20in Monitor | 10009.0 | 111.0 | 90 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 47189.0 | 390.0 | 121 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 20399.0 | 153.0 | 133 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 40279.0 | 384.0 | 105 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 2043.0 | 5.0 | 415 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1824.0 | 5.0 | 393 | 27.0 | 3.0 | ||
| Apple Airpods Headphones | 43650.0 | 151.0 | 290 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 26797.0 | 102.0 | 264 | 200.0 | 100.0 | ||
| Flatscreen TV | 28200.0 | 300.0 | 94 | 300.0 | 300.0 | ||
| Google Phone | 57600.0 | 600.0 | 96 | 600.0 | 600.0 | ||
| LG Dryer | 6600.0 | 600.0 | 11 | 600.0 | 600.0 | ||
| LG Washing Machine | 6600.0 | 600.0 | 11 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 6787.0 | 16.0 | 425 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 153000.0 | 1700.0 | 90 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 73999.0 | 1000.0 | 74 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 5378.0 | 13.0 | 402 | 60.0 | 12.0 | ||
| Vareebadd Phone | 17600.0 | 400.0 | 44 | 400.0 | 400.0 | ||
| Wired Headphones | 4628.0 | 13.0 | 345 | 36.0 | 12.0 | ||
| iPhone | 90300.0 | 705.0 | 128 | 1400.0 | 700.0 | ||
| 8 | 20in Monitor | 6049.0 | 114.0 | 53 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 42899.0 | 390.0 | 110 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 17549.0 | 154.0 | 114 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 33819.0 | 380.0 | 89 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1651.0 | 5.0 | 317 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1420.0 | 5.0 | 309 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 34800.0 | 150.0 | 232 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 25897.0 | 101.0 | 257 | 200.0 | 100.0 | ||
| Flatscreen TV | 23400.0 | 300.0 | 78 | 300.0 | 300.0 | ||
| Google Phone | 45600.0 | 608.0 | 75 | 1200.0 | 600.0 | ||
| LG Dryer | 5400.0 | 600.0 | 9 | 600.0 | 600.0 | ||
| LG Washing Machine | 6600.0 | 600.0 | 11 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 4814.0 | 16.0 | 301 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 124100.0 | 1700.0 | 73 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 76999.0 | 1000.0 | 77 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 4087.0 | 13.0 | 316 | 36.0 | 12.0 | ||
| Vareebadd Phone | 12800.0 | 413.0 | 31 | 800.0 | 400.0 | ||
| Wired Headphones | 3693.0 | 13.0 | 284 | 36.0 | 12.0 | ||
| iPhone | 67200.0 | 700.0 | 96 | 700.0 | 700.0 | ||
| 9 | 20in Monitor | 6159.0 | 110.0 | 56 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 32369.0 | 390.0 | 83 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 16349.0 | 153.0 | 107 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 33439.0 | 380.0 | 88 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1609.0 | 5.0 | 304 | 23.0 | 4.0 | ||
| AAA Batteries (4-pack) | 1301.0 | 4.0 | 300 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 36000.0 | 151.0 | 239 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 18498.0 | 101.0 | 184 | 200.0 | 100.0 | ||
| Flatscreen TV | 23400.0 | 300.0 | 78 | 300.0 | 300.0 | ||
| Google Phone | 39000.0 | 600.0 | 65 | 600.0 | 600.0 | ||
| LG Dryer | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Washing Machine | 7800.0 | 600.0 | 13 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 5262.0 | 17.0 | 314 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 86700.0 | 1700.0 | 51 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 60999.0 | 1000.0 | 61 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 4589.0 | 13.0 | 357 | 36.0 | 12.0 | ||
| Vareebadd Phone | 12000.0 | 400.0 | 30 | 400.0 | 400.0 | ||
| Wired Headphones | 3921.0 | 13.0 | 296 | 48.0 | 12.0 | ||
| iPhone | 70000.0 | 700.0 | 100 | 700.0 | 700.0 | ||
| Seattle(WA) | 1 | 20in Monitor | 1430.0 | 110.0 | 13 | 110.0 | 110.0 |
| 27in 4K Gaming Monitor | 12480.0 | 390.0 | 32 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 5400.0 | 150.0 | 36 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 11780.0 | 393.0 | 30 | 760.0 | 380.0 | ||
| AA Batteries (4-pack) | 323.0 | 5.0 | 64 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 353.0 | 4.0 | 80 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 7650.0 | 153.0 | 50 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 6199.0 | 100.0 | 62 | 100.0 | 100.0 | ||
| Flatscreen TV | 6000.0 | 300.0 | 20 | 300.0 | 300.0 | ||
| Google Phone | 10800.0 | 600.0 | 18 | 600.0 | 600.0 | ||
| LG Dryer | 600.0 | 600.0 | 1 | 600.0 | 600.0 | ||
| LG Washing Machine | 4800.0 | 600.0 | 8 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1017.0 | 15.0 | 66 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 23800.0 | 1700.0 | 14 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 18000.0 | 1000.0 | 18 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1231.0 | 14.0 | 88 | 36.0 | 12.0 | ||
| Vareebadd Phone | 6800.0 | 400.0 | 17 | 400.0 | 400.0 | ||
| Wired Headphones | 1031.0 | 13.0 | 80 | 24.0 | 12.0 | ||
| iPhone | 21000.0 | 700.0 | 30 | 700.0 | 700.0 | ||
| 10 | 20in Monitor | 3080.0 | 110.0 | 28 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 23399.0 | 390.0 | 60 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 9599.0 | 150.0 | 64 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 22039.0 | 380.0 | 58 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1006.0 | 5.0 | 195 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 795.0 | 4.0 | 187 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 20550.0 | 150.0 | 137 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 12199.0 | 102.0 | 120 | 200.0 | 100.0 | ||
| Flatscreen TV | 11400.0 | 300.0 | 38 | 300.0 | 300.0 | ||
| Google Phone | 28800.0 | 600.0 | 48 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 6000.0 | 600.0 | 10 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2885.0 | 16.0 | 180 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 71400.0 | 1700.0 | 42 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 41000.0 | 1000.0 | 41 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2569.0 | 13.0 | 198 | 24.0 | 12.0 | ||
| Vareebadd Phone | 6800.0 | 400.0 | 17 | 400.0 | 400.0 | ||
| Wired Headphones | 2434.0 | 13.0 | 181 | 48.0 | 12.0 | ||
| iPhone | 49700.0 | 710.0 | 70 | 1400.0 | 700.0 | ||
| 11 | 20in Monitor | 3850.0 | 110.0 | 35 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 22229.0 | 390.0 | 57 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 8849.0 | 150.0 | 59 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 18620.0 | 380.0 | 49 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 668.0 | 5.0 | 142 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 801.0 | 4.0 | 181 | 21.0 | 3.0 | ||
| Apple Airpods Headphones | 18000.0 | 151.0 | 119 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 9399.0 | 101.0 | 93 | 200.0 | 100.0 | ||
| Flatscreen TV | 11100.0 | 308.0 | 36 | 600.0 | 300.0 | ||
| Google Phone | 24000.0 | 600.0 | 40 | 600.0 | 600.0 | ||
| LG Dryer | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2751.0 | 16.0 | 168 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 45900.0 | 1700.0 | 27 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 34000.0 | 1000.0 | 34 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2270.0 | 13.0 | 177 | 48.0 | 12.0 | ||
| Vareebadd Phone | 7200.0 | 400.0 | 18 | 400.0 | 400.0 | ||
| Wired Headphones | 1643.0 | 13.0 | 126 | 36.0 | 12.0 | ||
| iPhone | 33600.0 | 700.0 | 48 | 700.0 | 700.0 | ||
| 12 | 20in Monitor | 4730.0 | 110.0 | 43 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 26519.0 | 390.0 | 68 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 10499.0 | 150.0 | 70 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 21279.0 | 380.0 | 56 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 1121.0 | 5.0 | 216 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 972.0 | 4.0 | 219 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 22800.0 | 150.0 | 152 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 15598.0 | 100.0 | 156 | 100.0 | 100.0 | ||
| Flatscreen TV | 16800.0 | 300.0 | 56 | 300.0 | 300.0 | ||
| Google Phone | 40800.0 | 600.0 | 68 | 600.0 | 600.0 | ||
| LG Dryer | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Washing Machine | 3600.0 | 600.0 | 6 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 3738.0 | 16.0 | 236 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 102000.0 | 1700.0 | 60 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 39000.0 | 1000.0 | 39 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2928.0 | 13.0 | 231 | 36.0 | 12.0 | ||
| Vareebadd Phone | 8800.0 | 400.0 | 22 | 400.0 | 400.0 | ||
| Wired Headphones | 2434.0 | 13.0 | 188 | 36.0 | 12.0 | ||
| iPhone | 59500.0 | 700.0 | 85 | 700.0 | 700.0 | ||
| 2 | 20in Monitor | 1980.0 | 110.0 | 18 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 16380.0 | 400.0 | 41 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 5250.0 | 150.0 | 35 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 14060.0 | 380.0 | 37 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 626.0 | 5.0 | 115 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 478.0 | 5.0 | 102 | 12.0 | 3.0 | ||
| Apple Airpods Headphones | 10200.0 | 150.0 | 68 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 6499.0 | 100.0 | 65 | 100.0 | 100.0 | ||
| Flatscreen TV | 7200.0 | 300.0 | 24 | 300.0 | 300.0 | ||
| Google Phone | 17400.0 | 600.0 | 29 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1749.0 | 17.0 | 106 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 35700.0 | 1700.0 | 21 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 19000.0 | 1000.0 | 19 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1458.0 | 13.0 | 108 | 36.0 | 12.0 | ||
| Vareebadd Phone | 3200.0 | 400.0 | 8 | 400.0 | 400.0 | ||
| Wired Headphones | 1151.0 | 13.0 | 89 | 24.0 | 12.0 | ||
| iPhone | 26600.0 | 700.0 | 38 | 700.0 | 700.0 | ||
| 3 | 20in Monitor | 2530.0 | 110.0 | 23 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 19110.0 | 390.0 | 49 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6300.0 | 150.0 | 42 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 22039.0 | 380.0 | 58 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 676.0 | 5.0 | 137 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 532.0 | 4.0 | 123 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 16650.0 | 150.0 | 111 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 8799.0 | 101.0 | 87 | 200.0 | 100.0 | ||
| Flatscreen TV | 7500.0 | 300.0 | 25 | 300.0 | 300.0 | ||
| Google Phone | 13800.0 | 600.0 | 23 | 600.0 | 600.0 | ||
| LG Dryer | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2272.0 | 16.0 | 139 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 44200.0 | 1700.0 | 26 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 31000.0 | 1000.0 | 31 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1792.0 | 13.0 | 141 | 36.0 | 12.0 | ||
| Vareebadd Phone | 4400.0 | 400.0 | 11 | 400.0 | 400.0 | ||
| Wired Headphones | 1619.0 | 13.0 | 121 | 48.0 | 12.0 | ||
| iPhone | 28700.0 | 700.0 | 41 | 700.0 | 700.0 | ||
| 4 | 20in Monitor | 4400.0 | 113.0 | 39 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 22229.0 | 397.0 | 56 | 780.0 | 390.0 | ||
| 27in FHD Monitor | 9749.0 | 150.0 | 65 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 22039.0 | 380.0 | 58 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 764.0 | 5.0 | 156 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 616.0 | 4.0 | 140 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 19650.0 | 150.0 | 131 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 9399.0 | 100.0 | 94 | 100.0 | 100.0 | ||
| Flatscreen TV | 9600.0 | 300.0 | 32 | 300.0 | 300.0 | ||
| Google Phone | 29400.0 | 600.0 | 49 | 600.0 | 600.0 | ||
| LG Dryer | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2706.0 | 16.0 | 166 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 59500.0 | 1700.0 | 35 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 37000.0 | 1000.0 | 37 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2079.0 | 14.0 | 153 | 72.0 | 12.0 | ||
| Vareebadd Phone | 8400.0 | 400.0 | 21 | 400.0 | 400.0 | ||
| Wired Headphones | 2122.0 | 13.0 | 158 | 36.0 | 12.0 | ||
| iPhone | 33600.0 | 700.0 | 48 | 700.0 | 700.0 | ||
| 5 | 20in Monitor | 2200.0 | 110.0 | 20 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 15990.0 | 390.0 | 41 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6600.0 | 150.0 | 44 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 16340.0 | 380.0 | 43 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 845.0 | 5.0 | 161 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 679.0 | 4.0 | 151 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 16950.0 | 151.0 | 112 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 7999.0 | 100.0 | 80 | 100.0 | 100.0 | ||
| Flatscreen TV | 9600.0 | 300.0 | 32 | 300.0 | 300.0 | ||
| Google Phone | 17400.0 | 600.0 | 29 | 600.0 | 600.0 | ||
| LG Dryer | 4800.0 | 600.0 | 8 | 600.0 | 600.0 | ||
| LG Washing Machine | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2003.0 | 15.0 | 132 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 45900.0 | 1700.0 | 27 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 25000.0 | 1000.0 | 25 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 2079.0 | 13.0 | 159 | 36.0 | 12.0 | ||
| Vareebadd Phone | 5200.0 | 400.0 | 13 | 400.0 | 400.0 | ||
| Wired Headphones | 1571.0 | 13.0 | 121 | 24.0 | 12.0 | ||
| iPhone | 28700.0 | 700.0 | 41 | 700.0 | 700.0 | ||
| 6 | 20in Monitor | 2750.0 | 110.0 | 25 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 15990.0 | 390.0 | 41 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 6300.0 | 150.0 | 42 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 12920.0 | 380.0 | 34 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 584.0 | 5.0 | 113 | 12.0 | 4.0 | ||
| AAA Batteries (4-pack) | 601.0 | 5.0 | 122 | 18.0 | 3.0 | ||
| Apple Airpods Headphones | 11550.0 | 152.0 | 76 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 7599.0 | 100.0 | 76 | 100.0 | 100.0 | ||
| Flatscreen TV | 8400.0 | 300.0 | 28 | 300.0 | 300.0 | ||
| Google Phone | 24000.0 | 600.0 | 40 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 3000.0 | 600.0 | 5 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1704.0 | 16.0 | 108 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 49300.0 | 1700.0 | 29 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 28000.0 | 1000.0 | 28 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1350.0 | 13.0 | 105 | 24.0 | 12.0 | ||
| Vareebadd Phone | 3600.0 | 400.0 | 9 | 400.0 | 400.0 | ||
| Wired Headphones | 1607.0 | 13.0 | 125 | 36.0 | 12.0 | ||
| iPhone | 32200.0 | 700.0 | 46 | 700.0 | 700.0 | ||
| 7 | 20in Monitor | 3080.0 | 114.0 | 27 | 220.0 | 110.0 | |
| 27in 4K Gaming Monitor | 11700.0 | 390.0 | 30 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 7050.0 | 153.0 | 46 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 16720.0 | 380.0 | 44 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 530.0 | 5.0 | 102 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 550.0 | 5.0 | 113 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 17400.0 | 150.0 | 116 | 150.0 | 150.0 | ||
| Bose SoundSport Headphones | 7699.0 | 100.0 | 77 | 100.0 | 100.0 | ||
| Flatscreen TV | 9900.0 | 300.0 | 33 | 300.0 | 300.0 | ||
| Google Phone | 18000.0 | 600.0 | 30 | 600.0 | 600.0 | ||
| LG Dryer | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| LG Washing Machine | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 2242.0 | 17.0 | 135 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 56100.0 | 1700.0 | 33 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 21000.0 | 1000.0 | 21 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1637.0 | 13.0 | 124 | 36.0 | 12.0 | ||
| Vareebadd Phone | 7600.0 | 400.0 | 19 | 400.0 | 400.0 | ||
| Wired Headphones | 1607.0 | 13.0 | 125 | 24.0 | 12.0 | ||
| iPhone | 23100.0 | 700.0 | 33 | 700.0 | 700.0 | ||
| 8 | 20in Monitor | 2530.0 | 110.0 | 23 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 14430.0 | 390.0 | 37 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 5550.0 | 154.0 | 36 | 300.0 | 150.0 | ||
| 34in Ultrawide Monitor | 11780.0 | 380.0 | 31 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 664.0 | 5.0 | 121 | 19.0 | 4.0 | ||
| AAA Batteries (4-pack) | 529.0 | 5.0 | 116 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 13650.0 | 153.0 | 89 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 7399.0 | 101.0 | 73 | 200.0 | 100.0 | ||
| Flatscreen TV | 7200.0 | 300.0 | 24 | 300.0 | 300.0 | ||
| Google Phone | 17400.0 | 600.0 | 29 | 600.0 | 600.0 | ||
| LG Dryer | 4200.0 | 600.0 | 7 | 600.0 | 600.0 | ||
| LG Washing Machine | 2400.0 | 600.0 | 4 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1839.0 | 16.0 | 117 | 30.0 | 15.0 | ||
| Macbook Pro Laptop | 45900.0 | 1700.0 | 27 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 24000.0 | 1000.0 | 24 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1446.0 | 13.0 | 108 | 36.0 | 12.0 | ||
| Vareebadd Phone | 5200.0 | 400.0 | 13 | 400.0 | 400.0 | ||
| Wired Headphones | 1199.0 | 13.0 | 94 | 24.0 | 12.0 | ||
| iPhone | 22400.0 | 700.0 | 32 | 700.0 | 700.0 | ||
| 9 | 20in Monitor | 3080.0 | 110.0 | 28 | 110.0 | 110.0 | |
| 27in 4K Gaming Monitor | 9360.0 | 390.0 | 24 | 390.0 | 390.0 | ||
| 27in FHD Monitor | 5700.0 | 150.0 | 38 | 150.0 | 150.0 | ||
| 34in Ultrawide Monitor | 13300.0 | 380.0 | 35 | 380.0 | 380.0 | ||
| AA Batteries (4-pack) | 561.0 | 5.0 | 111 | 15.0 | 4.0 | ||
| AAA Batteries (4-pack) | 407.0 | 5.0 | 90 | 15.0 | 3.0 | ||
| Apple Airpods Headphones | 13650.0 | 153.0 | 89 | 300.0 | 150.0 | ||
| Bose SoundSport Headphones | 7399.0 | 100.0 | 74 | 100.0 | 100.0 | ||
| Flatscreen TV | 7800.0 | 300.0 | 26 | 300.0 | 300.0 | ||
| Google Phone | 18600.0 | 600.0 | 31 | 600.0 | 600.0 | ||
| LG Dryer | 1800.0 | 600.0 | 3 | 600.0 | 600.0 | ||
| LG Washing Machine | 1200.0 | 600.0 | 2 | 600.0 | 600.0 | ||
| Lightning Charging Cable | 1630.0 | 16.0 | 99 | 45.0 | 15.0 | ||
| Macbook Pro Laptop | 25500.0 | 1700.0 | 15 | 1700.0 | 1700.0 | ||
| ThinkPad Laptop | 16000.0 | 1000.0 | 16 | 1000.0 | 1000.0 | ||
| USB-C Charging Cable | 1494.0 | 13.0 | 112 | 24.0 | 12.0 | ||
| Vareebadd Phone | 4400.0 | 400.0 | 11 | 400.0 | 400.0 | ||
| Wired Headphones | 1391.0 | 14.0 | 101 | 48.0 | 12.0 | ||
| iPhone | 23100.0 | 700.0 | 33 | 700.0 | 700.0 | ||
# stockDataAllMonthGropued_New333.to_csv('stockDataAllMonthGropuedSave44.csv')
## Maximun Quantity Order, Price Each and
#pd.set_option("display.max_rows", None, "display.max_columns", None)
#stockData3BestCity3 = pd.DataFrame(stockData3.groupby(["City", "Month"], as_index = False).max())
#stockData3BestCity3
## Total Sum of sales in Quantity and sales by States in each Month from Jan to Dec.
stockBestMonth222 = pd.DataFrame(stockData3.groupby(["Month"], as_index = False).sum()).round(2)
stockBestMonth222
| Month | QuantityOrdered | PriceEach | Sales | |
|---|---|---|---|---|
| 0 | 1 | 10903 | 1811768.38 | 1822256.73 |
| 1 | 10 | 22703 | 3715554.83 | 3736726.88 |
| 2 | 11 | 19798 | 3180600.68 | 3199603.20 |
| 3 | 12 | 28114 | 4588415.41 | 4613443.34 |
| 4 | 2 | 13449 | 2188884.72 | 2202022.42 |
| 5 | 3 | 17005 | 2791207.83 | 2807100.38 |
| 6 | 4 | 20558 | 3367671.02 | 3390670.24 |
| 7 | 5 | 18667 | 3135125.13 | 3152606.75 |
| 8 | 6 | 15253 | 2562025.61 | 2577802.26 |
| 9 | 7 | 16072 | 2632539.56 | 2647775.76 |
| 10 | 8 | 13448 | 2230345.42 | 2244467.88 |
| 11 | 9 | 13109 | 2084992.09 | 2097560.13 |
stockBestMonth222['Month'] = stockBestMonth222.Month.astype(int)
##
BestMonthStockNew = stockBestMonth222.sort_values(["Month"], ascending = True)
BestMonthStockNew
| Month | QuantityOrdered | PriceEach | Sales | |
|---|---|---|---|---|
| 0 | 1 | 10903 | 1811768.38 | 1822256.73 |
| 4 | 2 | 13449 | 2188884.72 | 2202022.42 |
| 5 | 3 | 17005 | 2791207.83 | 2807100.38 |
| 6 | 4 | 20558 | 3367671.02 | 3390670.24 |
| 7 | 5 | 18667 | 3135125.13 | 3152606.75 |
| 8 | 6 | 15253 | 2562025.61 | 2577802.26 |
| 9 | 7 | 16072 | 2632539.56 | 2647775.76 |
| 10 | 8 | 13448 | 2230345.42 | 2244467.88 |
| 11 | 9 | 13109 | 2084992.09 | 2097560.13 |
| 1 | 10 | 22703 | 3715554.83 | 3736726.88 |
| 2 | 11 | 19798 | 3180600.68 | 3199603.20 |
| 3 | 12 | 28114 | 4588415.41 | 4613443.34 |
In the Best Month Analysis, the idea is the give a full accounts and details of how much Total Sales was returned in different month. The table was presented from January (as Month 1) to December (as Month 12),the actual total quantity of Order and Total sum of Sales in each month. In January we made a Total sum of sales of $ 1,822,256.73 and a total quantity order of 10903 Items, In February, we made a Total sum of sales of $ 2202022.42 and a total quantity order of 13449 Items, in March, our total sum of sales was $ 2807100.38 and total quantity order of 17005 items. Again, in the Month of April, $ 3390670.24 was our actual total sales and a quantity order of 20558 Items whilst In May, we made total sales of $ 3152606.75 and 18667 order of quantity, in June, our customers were still responding to our services and product and we were able accumulate a total quantity order of 15253 items and a Total sum of sales of $ 3390670.24. In the Month of July, quantity Order apricated up to 16072 ordered items and a Total sum of sales of $ 2647775.76 against June. In August, we recorded a little low quantity order of 13448 items and $ 2244467.88 of total sum sales as compared to previous months. Moreover, in September, total quantity order and Sales depreciate again to 13109 quantity order and $ 2097560.13 as sum of sales for September, In November there was little improvement on quantity order and Total sum of sales to 22703 Items on order quantity and $ 3736726.88 as total sum of sales whilst in November, there was again a depreciation to 19798 items and $ 3199603.20 on sales returns as against October. last In December, this month was where we performed better in quantity order and total sales. In December we recorded 28114 items and a total sum of sales of $ 4613443.34. This could be attributed to the fact that Christmas might influence our high production.
fig = px.line_3d(BestMonthStockNew, x="QuantityOrdered", y="Sales", z="Month", title= 'Sum of Sales and Quantity in all Month')
fig.show()
# BestMonthStockNew = px.data.gapminder()
fig = px.line(BestMonthStockNew, x="Month", y="Sales", title='Monthly Sales In 2019', hover_data=['QuantityOrdered', 'PriceEach'])
fig.update_traces(texttemplate='%{text:.2s}')
##fig.update_layout(uniformtext_minsize=8, uniformtext_mode='hide')
fig.show()
#with open("figure1.pdf", "wb") as f:
# f.write(scope.transform(fig, format="pdf"))
#fig.write_html("fileNEW.html")
fig = px.scatter(BestMonthStockNew, x="Month", y="Sales", size="Sales", title = "Total Sales Vs Months", color="Month", hover_name="PriceEach",log_y= True,
log_x= "", size_max=60)
fig.show()
names = BestMonthStockNew['Month']
values = BestMonthStockNew['Sales']
plt.style.use('seaborn')
plt.figure(figsize=(70, 10))
##value2 = stockData3BestCity['PriceEach']
##plt.xlabel($$ e=mc^2 $$)
##plt.figure(figsize=(70, 10))
plt.subplot(131)
##plt.bar(names, values, color='b')
##plt.subplot(132)
plt.title('Sum of Sales Vs Month')
plt.scatter(names, values, color='r')
##plt.subplot(133)
plt.plot(names, values, color='black')
plt.show()
stockDataWeek = pd.DataFrame(stockData3.groupby(["Daysinweek"], as_index = False).sum())
stockDataWeek
| Daysinweek | QuantityOrdered | PriceEach | Sales | |
|---|---|---|---|---|
| 0 | Friday | 29448 | 4830795.59 | 4855938.38 |
| 1 | Monday | 29899 | 4850763.70 | 4883326.72 |
| 2 | Saturday | 29769 | 4873105.48 | 4904357.01 |
| 3 | Sunday | 29778 | 4903226.77 | 4932169.66 |
| 4 | Thursday | 29662 | 4810040.26 | 4839465.16 |
| 5 | Tuesday | 30724 | 5061153.03 | 5087956.78 |
| 6 | Wednesday | 29799 | 4960045.85 | 4988822.26 |
stockDataWeek2 = stockDataWeek.sort_values(["Sales", "QuantityOrdered"], ascending = False).round(2)
stockDataWeek2
| Daysinweek | QuantityOrdered | PriceEach | Sales | |
|---|---|---|---|---|
| 5 | Tuesday | 30724 | 5061153.03 | 5087956.78 |
| 6 | Wednesday | 29799 | 4960045.85 | 4988822.26 |
| 3 | Sunday | 29778 | 4903226.77 | 4932169.66 |
| 2 | Saturday | 29769 | 4873105.48 | 4904357.01 |
| 1 | Monday | 29899 | 4850763.70 | 4883326.72 |
| 0 | Friday | 29448 | 4830795.59 | 4855938.38 |
| 4 | Thursday | 29662 | 4810040.26 | 4839465.16 |
## stockBarplot1 = px.data.gapminder()
fig = px.bar(stockDataWeek2, y='Sales', x='Daysinweek', text='Sales',title='Sum of Sales and Quantity in all Days of Week',
hover_data=['PriceEach', 'QuantityOrdered', 'PriceEach'], color='Sales',)
fig.update_traces(texttemplate='%{text:.2s}', textposition='outside')
# fig.update_layout(uniformtext_minsize=8, uniformtext_mode='hide')
fig.show()
#with open("figure10.pdf", "wb") as f:
# f.write(scope.transform(fig, format="pdf"))
#fig.write_html("file10.html")
fig = px.line(stockDataWeek2, x="Daysinweek", y="Sales", title='Sum Of Sales In Days Of The Week', hover_data=['QuantityOrdered', 'PriceEach'])
fig.update_traces(texttemplate='%{text:.2s}')
##fig.update_layout(uniformtext_minsize=8, uniformtext_mode='hide')
fig.show()
#with open("figure1.pdf", "wb") as f:
# f.write(scope.transform(fig, format="pdf"))
#fig.write_html("fileNEW.html")
sns.set(rc ={'figure.figsize':(10.5, 5.0)})
data = ('stockDataWeek2')
group_data = stockDataWeek2['Sales']
group_names = stockDataWeek2['Daysinweek']
#group_mean = np.mean(group_data)
fig, ax = plt.subplots()
plt.style.use('seaborn')
labels = ax.get_xticklabels()
ax.set(xlabel='Sales', ylabel='Daysinweek',title='Sum Of Sales In Days in Of the week')
plt.figure(figsize=(90, 20))
ax.barh(group_names, group_data)
<BarContainer object of 7 artists>
<Figure size 7200x1600 with 0 Axes>
stockBestProduct = pd.DataFrame(stockData3.groupby(["Product", "PriceEach"], as_index = False).sum())
stockBestProduct
| Product | PriceEach | QuantityOrdered | Sales | |
|---|---|---|---|---|
| 0 | 20in Monitor | 109.99 | 4129 | 454148.71 |
| 1 | 27in 4K Gaming Monitor | 389.99 | 6244 | 2435097.56 |
| 2 | 27in FHD Monitor | 149.99 | 7550 | 1132424.50 |
| 3 | 34in Ultrawide Monitor | 379.99 | 6199 | 2355558.01 |
| 4 | AA Batteries (4-pack) | 3.84 | 27635 | 106118.40 |
| 5 | AAA Batteries (4-pack) | 2.99 | 31017 | 92740.83 |
| 6 | Apple Airpods Headphones | 150.00 | 15661 | 2349150.00 |
| 7 | Bose SoundSport Headphones | 99.99 | 13457 | 1345565.43 |
| 8 | Flatscreen TV | 300.00 | 4819 | 1445700.00 |
| 9 | Google Phone | 600.00 | 5532 | 3319200.00 |
| 10 | LG Dryer | 600.00 | 646 | 387600.00 |
| 11 | LG Washing Machine | 600.00 | 666 | 399600.00 |
| 12 | Lightning Charging Cable | 14.95 | 23217 | 347094.15 |
| 13 | Macbook Pro Laptop | 1700.00 | 4728 | 8037600.00 |
| 14 | ThinkPad Laptop | 999.99 | 4130 | 4129958.70 |
| 15 | USB-C Charging Cable | 11.95 | 23975 | 286501.25 |
| 16 | Vareebadd Phone | 400.00 | 2068 | 827200.00 |
| 17 | Wired Headphones | 11.99 | 20557 | 246478.43 |
| 18 | iPhone | 700.00 | 6849 | 4794300.00 |
stockBestProduct = stockBestProduct.sort_values(["QuantityOrdered"], ascending = False)
stockBestProduct
| Product | PriceEach | QuantityOrdered | Sales | |
|---|---|---|---|---|
| 5 | AAA Batteries (4-pack) | 2.99 | 31017 | 92740.83 |
| 4 | AA Batteries (4-pack) | 3.84 | 27635 | 106118.40 |
| 15 | USB-C Charging Cable | 11.95 | 23975 | 286501.25 |
| 12 | Lightning Charging Cable | 14.95 | 23217 | 347094.15 |
| 17 | Wired Headphones | 11.99 | 20557 | 246478.43 |
| 6 | Apple Airpods Headphones | 150.00 | 15661 | 2349150.00 |
| 7 | Bose SoundSport Headphones | 99.99 | 13457 | 1345565.43 |
| 2 | 27in FHD Monitor | 149.99 | 7550 | 1132424.50 |
| 18 | iPhone | 700.00 | 6849 | 4794300.00 |
| 1 | 27in 4K Gaming Monitor | 389.99 | 6244 | 2435097.56 |
| 3 | 34in Ultrawide Monitor | 379.99 | 6199 | 2355558.01 |
| 9 | Google Phone | 600.00 | 5532 | 3319200.00 |
| 8 | Flatscreen TV | 300.00 | 4819 | 1445700.00 |
| 13 | Macbook Pro Laptop | 1700.00 | 4728 | 8037600.00 |
| 14 | ThinkPad Laptop | 999.99 | 4130 | 4129958.70 |
| 0 | 20in Monitor | 109.99 | 4129 | 454148.71 |
| 16 | Vareebadd Phone | 400.00 | 2068 | 827200.00 |
| 11 | LG Washing Machine | 600.00 | 666 | 399600.00 |
| 10 | LG Dryer | 600.00 | 646 | 387600.00 |
Identifying which product or products sells more in our sales Analysis is very crucial in Accounting concept. In this Analysis we consider the item with the highest order quantity, our focus is on total number of quantity of items by each product. In most cases it give us a high level knowledge of as to which products performed better, to able to understand the preference of our customers and future demands of such product or item. From the Analysis table, AAA Batteries (4-pack) was the most sell out items in 2019 with a quantity order of 31017 items and a Total sum of Sales of $ 92,740.83 and at $ 2.99 each item price, followed by AA Batteries (4-pack) which also sold out 27635 total sum of quantity order and $ 106,118.40 sum of sales at $ 3.84 per item price, USB-C Charging Cable also followed with total quantity order of 23975 items and a total sum of sales of $ 286501.25 at item price at $ 11.95, Lightning Charging Cable recorder total quantity order of 23217 items and a total sum of sales of $ 347094.15 at a unit price of $ 14.95, Wired Headphones also contributed 20557 quantity order and at total sales of $ 246478.43 at a unit rpice of $ 11.99. Apple Air pods Headphones with quantity order of 15661 orders and a total sales of $ 2349150.00 at a unite price of $ 150.00 whilst Bose SoundSport Headphones with a quantity order of 13457 orders and a total sales of $1345565.43 at a unit price of $ 99.99, 27in FHD Monitor made a total order of 7550 and a total sum of sales of $ 1132424.50 at a unit price of $ 149.99. Moreover, 34in Ultrawide Monitor with a quantity order of 6199 and a total sales of $ 2355558.01 at a unit price of $ 379.99 as compared to Google Phone with a quantity order of 5532 purchases and a total sales of $ 3319200.00 at a unit price of $ 600.00. Flat screen TV followed on the table with 4819 quantity order and a total sales of $ 1445700.00 and a Unit price of $ 300.00, whilst Macbook Pro Laptops were ordered a total quantity of 4728 and $ 8037600.00 at a unit price of $ 1700.00. Furthermore, ThinkPad Laptops were ordered 4130 in quantity order and $ 4129958.70 sum of sales at a unit price of $ 999.99. 20in Monitor recorded 4129 in quantity order and $ 454148.71 as sum of sales and at a unit price of $ 109.99. Vareebadd Phone was one of the few products that recorded low quantity order of 2068 orders and but made high sum of sales of $ 827200.00 at a unit price of $ 400.00. Last, LG Washing Machine was on low quantity order at 666 orders and at a total sales of $ 399600.00 at a unit price of $ 600.00 whilst LG Dryer was the least order quantity at 646 units and a total sum of sales of $ 387600.00 at a unit price of $ 600
## stockBarplot1 = px.data.gapminder()
fig = px.bar(stockBestProduct, y='QuantityOrdered', x='Product', text='Sales',title='Sum of Sales and Quantity Of Product',
width=1100, height=700, hover_data=['PriceEach'], color='QuantityOrdered',)
fig.update_traces(texttemplate='%{text:.2s}', textposition='outside')
# fig.update_layout(uniformtext_minsize=8, uniformtext_mode='hide')
fig.show()
#with open("figure11.pdf", "wb") as f:
# f.write(scope.transform(fig, format="pdf"))
fig.write_html("file11.png")
sns.set(rc ={'figure.figsize':(8.7, 6.27)})
data = ('stockBestProduct')
group_data = stockBestProduct['QuantityOrdered']
group_names = stockBestProduct['Product']
#group_mean = np.mean(group_data)
fig, ax = plt.subplots()
plt.style.use('seaborn')
labels = ax.get_xticklabels()
ax.set(xlabel='Sales', ylabel='Daysinweek',title='Total Sum Of Qunatity Order Of Products')
plt.figure(figsize=(90, 50))
ax.barh(group_names, group_data)
<BarContainer object of 19 artists>
<Figure size 7200x4000 with 0 Axes>
## Observing the Lower and the upper Values for HorsePower
def min_max_value(col):
top = stockData3[col].idxmax()
top_observ = pd.DataFrame(stockData3.loc[top])
bottom = stockData3[col].idxmin()
bottom_observ = pd.DataFrame (stockData3.loc[bottom])
min_max_observ = pd.concat([top_observ, bottom_observ], axis = 1)
return min_max_observ
min_max_value('PriceEach')
| 8 | 19 | |
|---|---|---|
| OrderID | 176565.0 | 176575.0 |
| Product | Macbook Pro Laptop | AAA Batteries (4-pack) |
| QuantityOrdered | 1 | 1 |
| PriceEach | 1700.0 | 2.99 |
| OrderDate | 2019-04-24 10:38:00 | 2019-04-27 00:30:00 |
| PurchaseAddress | 915 Willow St, San Francisco, CA 94016 | 433 Hill St, New York City, NY 10001 |
| Month | 4 | 4 |
| Sales | 1700.0 | 2.99 |
| City | San Francisco(CA) | New York City(NY) |
| Daysinweek | Wednesday | Saturday |
Tukey's box plots (Robert McGill, John W. Tukey and Wayne A. Larsen: "The American Statis-tician" Vol. 32, No. 1, Feb., 1978, pp. 12-16)are statistical plots that provide useful informa-tion about the data distribution such as skewness. However, bar plots with error bars are still the common standard in most scientific literature, and thus, the interpretation of box plots can be challenging for the unfamiliar reader. The figure below illustrates the different visual features of a box plot. Violin plots are closely related to box plots but add useful information such as the distribution of the sample data (density trace).
ax = sns.boxplot(y ='Sales', data = stockData3 )
plt.title('Sales')
Text(0.5, 1.0, 'Sales')
ax = sns.boxplot(y ='PriceEach', data = stockData3 )
plt.title('PriceEach')
Text(0.5, 1.0, 'PriceEach')
sns.regplot(x = 'Sales', y= 'QuantityOrdered',data=stockData3)
plt.title('QuantityOrdered Vs Sales')
Text(0.5, 1.0, 'QuantityOrdered Vs Sales')
Data correlation is a method that helps to predict one attribute from another attribute and is used as a basic quantity in many modeling techniques. If one feature increases, the correlation will be positive, so the other feature increases as well and negative if one feature increases there will be a reduction in another. If there is no relation between any two attributes then it is said to be no correlation. If there is a linear relationship between the constant variables then the Pearson correlation coefficient is used. If there is a non-linear relation between the constant variables then the Spearman correlation coefficient is used. Since the considered data set is linear so the Pearson correlation coefficient is used for the selection of features in this study. This correlation for all the attributes is shown in figure 3.4. To improve the efficiency of the Machine Learning model, the attributes that have negative correlations were removed. It is a statistic measuring the linear correlation of two variables X and Y. It has a value between +1 and 1, where 1 is a linear positive correlation, 0 is not a linear correlation and 1 is a linear negative correlation. The motivation for considering the correlation is when people know a score on one measure, they can make a prediction of another measure that is highly related to it more accurate. The more accurate the prediction, the stronger the relationship between the variables.
from scipy.stats.stats import pearsonr
#from sympy import symbols, Eq, solve
stockData3New = stockData3
correlation = (stockData3New.corr())
round(correlation, 3)
correlation
print (correlation)
QuantityOrdered PriceEach Sales QuantityOrdered 1.000000 -0.148272 -0.139417 PriceEach -0.148272 1.000000 0.999203 Sales -0.139417 0.999203 1.000000
data = stockData3
df = pd.DataFrame(data,columns=['QuantityOrdered','PriceEach','Sales'])
corrMatrix = df.corr()
sns.heatmap(corrMatrix, annot=True)
plt.show()
sns.regplot(x = 'Sales', y= 'PriceEach', data=stockData3 )
plt.title('PriceEach Vs Sales')
Text(0.5, 1.0, 'PriceEach Vs Sales')
The Box plot show the distribution of our sum of sales of different items, we have understood that, our sale are spread apart and other product sales seems to far apart from other sum of sales of items. This might be an influence of one item being high priced than others due to thier values. For instance AAA Batteries (4-pack) which is sold at $ 2.99 might surely be far apart from ThinkPad Laptop which is sold at $ 999.99 as a unit price. In this case we have understood from the regression plot that there is an association and a predictor of "Total Sum of Sales" on product of by price Of products not quantity of purchase or order, when price of product goes up or is higher, there is a likelyhood that our Total sum of sales will sure be higher, if all things being equal we are able to sustain or improve upon our Markerting strutures and customers are likely to petronize our products. The Correlation matrix show an association or a causation between Price of Item and Sale at a correlation Coefficient of +0.9, which means there is a Very strong positive relationship, all other Vaariables show a week or no existence and influence on each variable as being a predictive variable of the other at a -0.1 Correlation Coef.
from matplotlib import cbook
sns.distplot(stockData3["PriceEach"], kde = True)
C:\Users\JeroRich\anaconda3\envs\ox\lib\site-packages\seaborn\distributions.py:2551: FutureWarning: `distplot` is a deprecated function and will be removed in a future version. Please adapt your code to use either `displot` (a figure-level function with similar flexibility) or `histplot` (an axes-level function for histograms).
<AxesSubplot:xlabel='PriceEach', ylabel='Density'>
The distribution plotstell us how our Unit price of our products are setup, from the plot we can see most of our products are priced between $ 2.99 and $ 540.00
stockBarplot = pd.read_csv("stockcloseDatasalse4.csv", na_values = [" ?"])
stockBarplot.head()
| Month | QuantityOrdered | PriceEach | Sales | |
|---|---|---|---|---|
| 0 | 1 | 10903 | 1.811768e+06 | 1.822257e+06 |
| 1 | 2 | 13449 | 2.188885e+06 | 2.202022e+06 |
| 2 | 3 | 17005 | 2.791208e+06 | 2.807100e+06 |
| 3 | 4 | 20558 | 3.367671e+06 | 3.390670e+06 |
| 4 | 5 | 18667 | 3.135125e+06 | 3.152607e+06 |
stockBarplot1 = pd.DataFrame(stockBarplot)
stockBarplot1.head()
| Month | QuantityOrdered | PriceEach | Sales | |
|---|---|---|---|---|
| 0 | 1 | 10903 | 1.811768e+06 | 1.822257e+06 |
| 1 | 2 | 13449 | 2.188885e+06 | 2.202022e+06 |
| 2 | 3 | 17005 | 2.791208e+06 | 2.807100e+06 |
| 3 | 4 | 20558 | 3.367671e+06 | 3.390670e+06 |
| 4 | 5 | 18667 | 3.135125e+06 | 3.152607e+06 |
stockBarplot.Month.astype(str)
0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 Name: Month, dtype: object
stockBarplot12 = pd.DataFrame(stockBarplot1)
stockBarplot12
| Month | QuantityOrdered | PriceEach | Sales | |
|---|---|---|---|---|
| 0 | 1 | 10903 | 1.811768e+06 | 1.822257e+06 |
| 1 | 2 | 13449 | 2.188885e+06 | 2.202022e+06 |
| 2 | 3 | 17005 | 2.791208e+06 | 2.807100e+06 |
| 3 | 4 | 20558 | 3.367671e+06 | 3.390670e+06 |
| 4 | 5 | 18667 | 3.135125e+06 | 3.152607e+06 |
| 5 | 6 | 15253 | 2.562026e+06 | 2.577802e+06 |
| 6 | 7 | 16072 | 2.632540e+06 | 2.647776e+06 |
| 7 | 8 | 13448 | 2.230345e+06 | 2.244468e+06 |
| 8 | 9 | 13109 | 2.084992e+06 | 2.097560e+06 |
| 9 | 10 | 22703 | 3.715555e+06 | 3.736727e+06 |
| 10 | 11 | 19798 | 3.180601e+06 | 3.199603e+06 |
| 11 | 12 | 28114 | 4.588415e+06 | 4.613443e+06 |
fig = px.scatter(stockBarplot12, x="Month", y="Sales", color="Month", trendline="lowess")
fig.show()
OLS shows a trend of Sales. This shows that sales were affected by the Particular Month. We are confident when we should expect high sales and low sales and plan how reach more customers by the Marketing team.The OLS plot gives an insight into Sales performance in different Months.
pd.to_datetime(stockBarplot12['Month'])
0 1970-01-01 00:00:00.000000001 1 1970-01-01 00:00:00.000000002 2 1970-01-01 00:00:00.000000003 3 1970-01-01 00:00:00.000000004 4 1970-01-01 00:00:00.000000005 5 1970-01-01 00:00:00.000000006 6 1970-01-01 00:00:00.000000007 7 1970-01-01 00:00:00.000000008 8 1970-01-01 00:00:00.000000009 9 1970-01-01 00:00:00.000000010 10 1970-01-01 00:00:00.000000011 11 1970-01-01 00:00:00.000000012 Name: Month, dtype: datetime64[ns]
fig1 = px.scatter(stockBarplot12, x="QuantityOrdered", y="Sales", color="Month", trendline="ols")
fig1.show()
results = px.get_trendline_results(fig1)
print(results)
px_fit_results 0 <statsmodels.regression.linear_model.Regressio...
OLS shows that Quntity sold has high influen on how much sales we made in all months, this means our price will not hinders our target sales and qunatity if only we are able reach more customers.
results = px.get_trendline_results(fig1)
print(results)
px_fit_results 0 <statsmodels.regression.linear_model.Regressio...
import plotly.express as px
import plotly.graph_objects as go
from sklearn.linear_model import LinearRegression
from sklearn.model_selection import train_test_split
df = pd.read_csv("stockAnalysis.csv", na_values = [" ?"])
# Split data into training and test splits
train_idx, test_idx = train_test_split(df.index, test_size=.25, random_state=0)
df['split'] = 'train'
df.loc[test_idx, 'split'] = 'test'
X = df[['QuantityOrdered','PriceEach']]
y = df['Sales']
X_train = df.loc[train_idx, ['QuantityOrdered', 'PriceEach']]
y_train = df.loc[train_idx, 'Sales']
# Condition the model on sepal width and length, predict the petal width
model = LinearRegression()
model.fit(X_train, y_train)
df['prediction'] = model.predict(X)
fig = px.scatter(
df, x='Sales', y='prediction',
marginal_x='histogram', marginal_y='histogram',
color='split', trendline='ols'
)
fig.update_traces(histnorm='probability', selector={'type':'histogram'})
fig.add_shape(
type="line", line=dict(dash='dash'),
x0=y.min(), y0=y.min(),
x1=y.max(), y1=y.max()
)
fig.show()
results = px.get_trendline_results(fig)
print(results)
results.px_fit_results.iloc[0].summary()